diff options
author | 2023-08-03 20:48:43 -0700 | |
---|---|---|
committer | 2023-09-06 04:18:43 -0700 | |
commit | 9da12812bcb4dea3b11a0adad45f26105dc9b8c2 (patch) | |
tree | cfbd7e8b49ad5169bb8c8c28aacd2f502c3d2cfe | |
parent | d0f22d3f55e7f5111258ef3318ced0b45fcbfd2e (diff) | |
download | bun-dave/remove-native-event.tar.gz bun-dave/remove-native-event.tar.zst bun-dave/remove-native-event.zip |
remove lazy(primordials) testdave/remove-native-event
-rw-r--r-- | test/js/bun/resolve/import-meta.test.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/js/bun/resolve/import-meta.test.js b/test/js/bun/resolve/import-meta.test.js index 492a19942..96103881e 100644 --- a/test/js/bun/resolve/import-meta.test.js +++ b/test/js/bun/resolve/import-meta.test.js @@ -8,10 +8,6 @@ import sync from "./require-json.json"; const { path, dir } = import.meta; -it("primordials are not here!", () => { - expect(globalThis[Symbol.for("Bun.lazy")]("primordials") === undefined).toBe(true); -}); - it("import.meta.main", () => { const { exitCode } = spawnSync({ cmd: [bunExe(), "run", join(import.meta.dir, "./main-test-script.js")], |