mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { expect, test } from "bun:test";
|
|
import { join } from "node:path";
|
|
|
|
test("test bun target", async () => {
|
|
const { success, outputs, logs } = await Bun.build({
|
|
entrypoints: [join(import.meta.dir, "03844.fixture.ts")],
|
|
target: "bun",
|
|
});
|
|
expect(logs).toBeEmpty();
|
|
expect(success).toBe(true);
|
|
const [blob] = outputs;
|
|
const content = await blob.text();
|
|
|
|
// use bun's ws
|
|
expect(content).toContain('import { WebSocket } from "ws"');
|
|
expect(content).not.toContain("var import_websocket = __toESM(require_websocket(), 1);");
|
|
});
|
|
|
|
test("test node target", async () => {
|
|
const { success, outputs, logs } = await Bun.build({
|
|
entrypoints: [join(import.meta.dir, "03844.fixture.ts")],
|
|
target: "node",
|
|
});
|
|
expect(logs).toBeEmpty();
|
|
expect(success).toBe(true);
|
|
const [blob] = outputs;
|
|
const content = await blob.text();
|
|
|
|
// use node's ws
|
|
expect(content).not.toContain('import {WebSocket} from "ws"');
|
|
expect(content).toContain("var import_websocket = __toESM(require_websocket(), 1);");
|
|
});
|