Skip to content

Commit 06dd78a

Browse files
Revert "fix playwright alerts"
This reverts commit ea25f77.
1 parent da241b9 commit 06dd78a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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" with { type: "json" };
29+
import jwts from "./jwt.json" assert { type: "json" };
3030

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

e2e/e2e.values.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
export const enum MessageTypeValue {
1+
export enum MessageTypeValue {
22
SUCCESS = "success",
33
WARNING = "warning",
44
ERROR = "error",
55
}
66

7-
export const enum MessageStatusValue {
7+
export enum MessageStatusValue {
88
VISIBLE = "visible",
99
NOT_VISIBLE = "not-visible",
1010
}

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" with { type: "json" };
18+
import jwts from "./jwt.json" assert { type: "json" };
1919
import {
2020
JwtDictionaryModel,
2121
JwtSignedWithDigitalModel,

0 commit comments

Comments
 (0)