diff options
Diffstat (limited to 'integration/bunjs-only-snippets/dirname.test.js')
-rw-r--r-- | integration/bunjs-only-snippets/dirname.test.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/integration/bunjs-only-snippets/dirname.test.js b/integration/bunjs-only-snippets/dirname.test.js deleted file mode 100644 index 98292dc49..000000000 --- a/integration/bunjs-only-snippets/dirname.test.js +++ /dev/null @@ -1,9 +0,0 @@ -import { expect, it } from "bun:test"; - -it("__dirname should work", () => { - expect(import.meta.dir).toBe(__dirname); -}); - -it("__filename should work", () => { - expect(import.meta.path).toBe(__filename); -}); |