aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-15 00:13:09 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-15 00:13:09 -0800
commitc7e3b4aaa6d0ffdcaca3cadd79fe9ef3d96d3ef6 (patch)
tree95c18a00a89ac0df66bccd9e0559d9eb7205fb08 /test/bun.js
parent44babb9ce5a4e26fc43b002dedbf194c31331a0e (diff)
downloadbun-jarred/dump.tar.gz
bun-jarred/dump.tar.zst
bun-jarred/dump.zip
Diffstat (limited to 'test/bun.js')
-rw-r--r--test/bun.js/esbuild-child_process.test.ts14
-rw-r--r--test/bun.js/import-meta.test.js6
2 files changed, 13 insertions, 7 deletions
diff --git a/test/bun.js/esbuild-child_process.test.ts b/test/bun.js/esbuild-child_process.test.ts
index a7eb4f079..37713def2 100644
--- a/test/bun.js/esbuild-child_process.test.ts
+++ b/test/bun.js/esbuild-child_process.test.ts
@@ -2,13 +2,13 @@ import { transform, transformSync } from "esbuild";
import { describe, it, expect } from "bun:test";
describe("child_process.spawn - esbuild", () => {
- it("should transform successfully", async () => {
- const result = await transform("console.log('hello world')", {
- loader: "js",
- target: "node12",
- });
- expect(result.code).toBe('console.log("hello world");\n');
- });
+ // it("should transform successfully", async () => {
+ // const result = await transform("console.log('hello world')", {
+ // loader: "js",
+ // target: "node12",
+ // });
+ // expect(result.code).toBe('console.log("hello world");\n');
+ // });
it("works for input exceeding the pipe capacity", async () => {
const hugeString = `console.log(${JSON.stringify("a".repeat(1000000))});`;
diff --git a/test/bun.js/import-meta.test.js b/test/bun.js/import-meta.test.js
index a6d663061..26adea139 100644
--- a/test/bun.js/import-meta.test.js
+++ b/test/bun.js/import-meta.test.js
@@ -22,6 +22,12 @@ it("import.meta.resolveSync", () => {
).toBe(import.meta.path);
});
+it("require.cache", () => {
+ expect(require.cache).toBe(import.meta.require.cache);
+ expect(typeof require.cache).toBe("object");
+ expect(require.cache !== null).toBe(true);
+});
+
it("import.meta.require (json)", () => {
expect(import.meta.require("./require-json.json").hello).toBe(sync.hello);
const require = Module.createRequire(import.meta.path);