Skip to content

Commit 7f853dc

Browse files
committed
chore: adjust build
1 parent 0b40619 commit 7f853dc

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

src/_internals/test/globals.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,14 @@ declare global {
1717
RUN_LIVE_CEP_TESTS?: string | number;
1818
}
1919
}
20+
21+
22+
declare module "bun:test" {
23+
export const describe: any;
24+
export const it: any;
25+
export const expect: any;
26+
export const test: any;
27+
export const beforeEach: any;
28+
export const afterEach: any;
29+
export const jest: any;
30+
}

src/_internals/test/runtime-deno.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/// <reference lib="deno.ns" />
21
import "./globals.d.ts";
32

43
type TestCallback = () => void | Promise<void>;

0 commit comments

Comments
 (0)