Files
bun.sh/test/bun.js/dirname.test.js
2022-06-22 23:21:48 -07: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);
});