File tree 2 files changed +11
-15
lines changed
2 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 65
65
"test" : " jest" ,
66
66
"test:watch" : " jest --watch" ,
67
67
"test:playwright" : " playwright test" ,
68
- "test:playwright:inspect" : " playwright test --debug" ,
68
+ "test:playwright:local" : " playwright test --project=Chromium" ,
69
+ "test:playwright:inspect" : " playwright test --project=Chromium --debug" ,
69
70
"prepare" : " ts-patch install -s && husky install && ts-patch install -s && npm run build:date" ,
70
71
"update:readme" : " node scripts/replaceLinkInReadme.js"
71
72
},
Original file line number Diff line number Diff line change @@ -33,20 +33,15 @@ const config: PlaywrightTestConfig = {
33
33
name : 'Chromium' ,
34
34
use : { ...devices [ 'Desktop Chrome' ] } ,
35
35
} ,
36
- ] . concat (
37
- isCI
38
- ? [
39
- {
40
- name : 'Safari' ,
41
- use : { ...devices [ 'Desktop Safari' ] } ,
42
- } ,
43
- {
44
- name : 'Firefox' ,
45
- use : { ...devices [ 'Desktop Firefox' ] } ,
46
- } ,
47
- ]
48
- : [ ]
49
- ) ,
36
+ {
37
+ name : 'Safari' ,
38
+ use : { ...devices [ 'Desktop Safari' ] } ,
39
+ } ,
40
+ {
41
+ name : 'Firefox' ,
42
+ use : { ...devices [ 'Desktop Firefox' ] } ,
43
+ } ,
44
+ ] ,
50
45
} ;
51
46
52
47
export default config ;
You can’t perform that action at this time.
0 commit comments