Files
bun-src/test/js/node/dirname.test.js
2026-08-27 21:09:14 +00: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);
});