Files
bun.sh/test/js/node/dirname.test.js
2023-03-07 12:22:34 -08:00

10 lines
210 B
JavaScript

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);
});