Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: npx playwright install --with-deps

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

- name: Upload Playwright Traces
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion e2e/decoder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
} from "./e2e.utils";
import { MessageStatusValue, MessageTypeValue } from "./e2e.values";
import { JwtDictionaryModel, JwtSignedWithDigitalModel } from "./e2e.models";
import jwts from "./jwt.json" assert { type: "json" };
import jwts from "./jwt.json" with { type: "json" };

const TestJwts = (jwts as JwtDictionaryModel).byAlgorithm;

Expand Down
2 changes: 1 addition & 1 deletion e2e/encoder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
getLang,
switchToEncoderTab,
} from "./e2e.utils";
import jwts from "./jwt.json" assert { type: "json" };
import jwts from "./jwt.json" with { type: "json" };
import {
JwtDictionaryModel,
JwtSignedWithDigitalModel,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage",
"playwright:test-ui": "npx playwright test --ui"
"playwright:test-ui": "NODE_OPTIONS=\"--no-experimental-strip-types\" npx playwright test --ui"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.7",
Expand Down