mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
21 lines
787 B
JavaScript
21 lines
787 B
JavaScript
import { write } from "bun";
|
|
import { expect, test } from "bun:test";
|
|
import { unlinkSync } from "fs";
|
|
import { tmpdir } from "os";
|
|
import { join } from "path";
|
|
test("bun-file-exists", async () => {
|
|
expect(await Bun.file(import.meta.path).exists()).toBeTrue();
|
|
expect(await Bun.file(import.meta.path + "boop").exists()).toBeFalse();
|
|
expect(await Bun.file(import.meta.dir).exists()).toBeFalse();
|
|
expect(await Bun.file(import.meta.dir + "/").exists()).toBeFalse();
|
|
const temp = join(tmpdir(), "bun-file-exists.test.js");
|
|
try {
|
|
unlinkSync(temp);
|
|
} catch (e) {}
|
|
expect(await Bun.file(temp).exists()).toBeFalse();
|
|
await write(temp, "boop");
|
|
expect(await Bun.file(temp).exists()).toBeTrue();
|
|
unlinkSync(temp);
|
|
expect(await Bun.file(temp).exists()).toBeFalse();
|
|
});
|