File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2020 - run : npm run typecheck
2121 - run : npm run lint
2222 - run : npm run build:embedded # check that build works
23+ - run : npm run package # check that package build works
2324
2425 unit_tests :
2526 name : Unit Tests
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import {devices} from '@playwright/test';
44const baseUrl = process . env . PLAYWRIGHT_BASE_URL ;
55
66const config : PlaywrightTestConfig = {
7- globalSetup : './src /playwrightSetup.ts' ,
7+ globalSetup : './tests /playwrightSetup.ts' ,
88 testDir : 'tests/suites' ,
99 timeout : 2 * 60 * 1000 ,
1010 outputDir : './playwright-artifacts/test-results' ,
Original file line number Diff line number Diff line change 11import { chromium } from '@playwright/test' ;
22
33import config from '../playwright.config' ;
4- import { PageModel } from '../tests/models/PageModel' ;
4+
5+ import { PageModel } from './models/PageModel' ;
56
67async function warmupApplication ( appPage : PageModel ) {
78 const maxRetries = 5 ;
Original file line number Diff line number Diff line change 44 "outDir" : " dist" ,
55 "rootDir" : " src" ,
66 "declaration" : true ,
7+ "sourceMap" : true ,
78 "noEmit" : false ,
89 "importHelpers" : true
910 },
You can’t perform that action at this time.
0 commit comments