Skip to content

Commit 9671527

Browse files
committed
Merge branch 'master' of https://github.com/jsonwebtoken/jsonwebtoken.github.io into ui-redesign
2 parents 167aeaa + 54cab28 commit 9671527

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: npx playwright install --with-deps
2828

2929
- name: Run Playwright Tests
30-
run: npx playwright test
30+
run: NODE_OPTIONS="--no-experimental-strip-types" npx playwright test
3131

3232
- name: Upload Playwright Traces
3333
if: failure()

e2e/decoder.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
} from "./e2e.utils";
2727
import { MessageStatusValue, MessageTypeValue } from "./e2e.values";
2828
import { JwtDictionaryModel, JwtSignedWithDigitalModel } from "./e2e.models";
29-
import jwts from "./jwt.json" assert { type: "json" };
29+
import jwts from "./jwt.json" with { type: "json" };
3030

3131
const TestJwts = (jwts as JwtDictionaryModel).byAlgorithm;
3232

e2e/encoder.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
getLang,
1616
switchToEncoderTab,
1717
} from "./e2e.utils";
18-
import jwts from "./jwt.json" assert { type: "json" };
18+
import jwts from "./jwt.json" with { type: "json" };
1919
import {
2020
JwtDictionaryModel,
2121
JwtSignedWithDigitalModel,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"lint": "next lint",
1212
"test": "vitest",
1313
"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"
1515
},
1616
"dependencies": {
1717
"@formatjs/intl-localematcher": "^0.5.7",

0 commit comments

Comments
 (0)