diff options
author | 2022-03-04 17:51:22 -0800 | |
---|---|---|
committer | 2022-03-04 17:51:22 -0800 | |
commit | 4f5aa438d6799f24c7a112ca8dc0910466944f2e (patch) | |
tree | d859ea1467a7e8ae8e7ae20466d4bf16224ae55c /integration/bunjs-only-snippets/atob.test.js | |
parent | bd2f818500be18523aede09df300ef9f3af9180e (diff) | |
download | bun-4f5aa438d6799f24c7a112ca8dc0910466944f2e.tar.gz bun-4f5aa438d6799f24c7a112ca8dc0910466944f2e.tar.zst bun-4f5aa438d6799f24c7a112ca8dc0910466944f2e.zip |
[JS Parser] Support JSX prop punning
Diffstat (limited to 'integration/bunjs-only-snippets/atob.test.js')
-rw-r--r-- | integration/bunjs-only-snippets/atob.test.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/integration/bunjs-only-snippets/atob.test.js b/integration/bunjs-only-snippets/atob.test.js index c146aa855..4945829e1 100644 --- a/integration/bunjs-only-snippets/atob.test.js +++ b/integration/bunjs-only-snippets/atob.test.js @@ -1,4 +1,4 @@ -import { expect, describe, it } from "bun:test"; +import { expect, it } from "bun:test"; function expectInvalidCharacters(val) { try { @@ -49,7 +49,6 @@ it("atob", () => { expectInvalidCharacters("=="); expectInvalidCharacters("==="); expectInvalidCharacters("===="); - expectInvalidCharacters("====="); }); |