File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 24
24
"prettier:w" : " prettier --write --ignore-unknown ." ,
25
25
"test" : " npx playwright test" ,
26
26
"test:d" : " DEBUG=playwright-network-cache npm test" ,
27
+ "pw" : " npm i --no-save @playwright/test@$PW" ,
28
+ "browsers" : " npx cross-env PLAYWRIGHT_SKIP_BROWSER_GC=1 npx playwright install chromium" ,
27
29
"example" : " npx playwright test -c example" ,
28
30
"example:debug" : " DEBUG=playwright-network-cache npx playwright test -c example" ,
29
31
"example:nocache" : " rm -rf .network-cache && npx playwright test -c example" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class SyntheticApiResponse extends PwApiResponse implements APIResponse {
13
13
private info : ResponseInfo ,
14
14
private bodyBuffer : Buffer ,
15
15
) {
16
- super ( { } , { headers : [ ] } ) ;
16
+ super ( { _platform : { } } , { headers : [ ] } ) ;
17
17
}
18
18
19
19
ok ( ) {
You can’t perform that action at this time.
0 commit comments