File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 43
43
sudo apt-get install xvfb
44
44
npm install
45
45
npm run build
46
+ - name : Install Playwright Browsers
47
+ run : npx playwright install --with-deps
46
48
- run : npm run test-int-x
Original file line number Diff line number Diff line change 31
31
"test-int-x" : " xvfb-run --server-args='-screen 0 1024x768x24' npm run test-int" ,
32
32
"test-clean-tree" : " npm run build && sh scripts/check-for-changes.sh" ,
33
33
"test" : " npm run lint && npm run lint-no-output-globals && npm run test-unit && npm run test-int" ,
34
- "posttest" : " npm run test --workspaces --if-present"
34
+ "posttest" : " npm run test --workspaces --if-present" ,
35
+ "posttest-int" : " npm run test-int --workspaces --if-present" ,
36
+ "posttest-int-x" : " npm run test-int-x --workspaces --if-present"
35
37
},
36
38
"type" : " module" ,
37
39
"workspaces" : [
Original file line number Diff line number Diff line change 6
6
"type" : " module" ,
7
7
"scripts" : {
8
8
"build" : " node index.js" ,
9
- "test" : " playwright test " ,
9
+ "test" : " echo '✅ No tests yet' " ,
10
10
"test.headed" : " playwright test --headed" ,
11
+ "test-int-x" : " playwright test" ,
12
+ "test-int" : " playwright test" ,
11
13
"serve" : " serve pages -p 3210"
12
14
},
13
15
"license" : " ISC" ,
You can’t perform that action at this time.
0 commit comments