blob: 98292dc494ca2db80a8580768fb895f835416231 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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);
});
|