diff options
Diffstat (limited to 'test/bun.js/jest-doesnt-auto-import.js')
-rw-r--r-- | test/bun.js/jest-doesnt-auto-import.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/bun.js/jest-doesnt-auto-import.js b/test/bun.js/jest-doesnt-auto-import.js deleted file mode 100644 index 4d4a02b37..000000000 --- a/test/bun.js/jest-doesnt-auto-import.js +++ /dev/null @@ -1,12 +0,0 @@ -export function getJestGlobals() { - return { - describe: typeof describe === "function" ? describe : undefined, - it: typeof it === "function" ? it : undefined, - test: typeof test === "function" ? test : undefined, - expect: typeof expect === "function" ? expect : undefined, - beforeAll: typeof beforeAll === "function" ? beforeAll : undefined, - beforeEach: typeof beforeEach === "function" ? beforeEach : undefined, - afterAll: typeof afterAll === "function" ? afterAll : undefined, - afterEach: typeof afterEach === "function" ? afterEach : undefined, - }; -} |