File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
run : npx playwright install --with-deps
28
28
29
29
- name : Run Playwright Tests
30
- run : npx playwright test
30
+ run : NODE_OPTIONS="--no-experimental-strip-types" npx playwright test
31
31
32
32
- name : Upload Playwright Traces
33
33
if : failure()
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import {
26
26
} from "./e2e.utils" ;
27
27
import { MessageStatusValue , MessageTypeValue } from "./e2e.values" ;
28
28
import { JwtDictionaryModel , JwtSignedWithDigitalModel } from "./e2e.models" ;
29
- import jwts from "./jwt.json" assert { type : "json" } ;
29
+ import jwts from "./jwt.json" with { type : "json" } ;
30
30
31
31
const TestJwts = ( jwts as JwtDictionaryModel ) . byAlgorithm ;
32
32
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import {
15
15
getLang ,
16
16
switchToEncoderTab ,
17
17
} from "./e2e.utils" ;
18
- import jwts from "./jwt.json" assert { type : "json" } ;
18
+ import jwts from "./jwt.json" with { type : "json" } ;
19
19
import {
20
20
JwtDictionaryModel ,
21
21
JwtSignedWithDigitalModel ,
Original file line number Diff line number Diff line change 11
11
"lint" : " next lint" ,
12
12
"test" : " vitest" ,
13
13
"coverage" : " vitest run --coverage" ,
14
- "playwright:test-ui" : " npx playwright test --ui"
14
+ "playwright:test-ui" : " NODE_OPTIONS= \" --no-experimental-strip-types \" npx playwright test --ui"
15
15
},
16
16
"dependencies" : {
17
17
"@formatjs/intl-localematcher" : " ^0.5.7" ,
You can’t perform that action at this time.
0 commit comments