mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { expect, test } from "bun:test";
|
|
import path from "path";
|
|
|
|
test("SharedArrayBuffer with workers doesn't crash", async () => {
|
|
expect([path.join(import.meta.dir, "15787.fixture.ts")]).toRun();
|
|
});
|