diff options
author | 2023-04-25 22:13:39 -0400 | |
---|---|---|
committer | 2023-04-25 19:13:39 -0700 | |
commit | 0846a4fa809430a77f1284a7a526a946007484e0 (patch) | |
tree | 799fcc8893c1993beba1962bcdfa5065222006a5 /test/bundler/esbuild/dce.test.ts | |
parent | 2256d43a32164433431f387ebc7c40597bb10638 (diff) | |
download | bun-0846a4fa809430a77f1284a7a526a946007484e0.tar.gz bun-0846a4fa809430a77f1284a7a526a946007484e0.tar.zst bun-0846a4fa809430a77f1284a7a526a946007484e0.zip |
bundler tests, testing plugins (#2740)
* add cjs2esm stuff
* tests
* plugin testing
Diffstat (limited to 'test/bundler/esbuild/dce.test.ts')
-rw-r--r-- | test/bundler/esbuild/dce.test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/bundler/esbuild/dce.test.ts b/test/bundler/esbuild/dce.test.ts index 6e65244cf..9d4a0c27d 100644 --- a/test/bundler/esbuild/dce.test.ts +++ b/test/bundler/esbuild/dce.test.ts @@ -1,6 +1,6 @@ import assert from "assert"; import dedent from "dedent"; -import { expectBundled, itBundled, testForFile } from "../expectBundled"; +import { itBundled, testForFile } from "../expectBundled"; var { describe, test, expect } = testForFile(import.meta.path); // Tests ported from: @@ -1272,6 +1272,7 @@ describe("bundler", () => { dce: true, }); itBundled("dce/TreeShakingClassProperty", { + notImplemented: true, files: { "/entry.js": /* js */ ` let remove1 = class { x } |