Skip to content

Commit

Permalink
test: fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
kuizuo committed Nov 18, 2023
1 parent ca5f9ec commit b635c53
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/utils/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ for (void 0;;) {
const rawCode = `
let a = 1 + 2;
let b = "debu" + "gger"
let c = !![];
let d = ![] ;
let d = ![];
`

const deob = new Deob(rawCode)
Expand All @@ -97,10 +96,8 @@ for (void 0;;) {
`
let a = 3;
let b = "debugger";
let c = true;
let d = false;
`.trim(),
let d = false;`.trim(),
)
})

Expand Down

0 comments on commit b635c53

Please sign in to comment.