mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-29 21:33:54 +00:00
27 lines
703 B
TypeScript
27 lines
703 B
TypeScript
import { $ } from "bun"
|
|
import { describe, expect, test } from "bun:test"
|
|
import fs from "fs/promises"
|
|
import { tmpdir } from "./fixture"
|
|
|
|
describe("tmpdir", () => {
|
|
test("disables fsmonitor for git fixtures", async () => {
|
|
await using tmp = await tmpdir({ git: true })
|
|
|
|
const value = (await $`git config core.fsmonitor`.cwd(tmp.path).quiet().text()).trim()
|
|
expect(value).toBe("false")
|
|
})
|
|
|
|
test("removes directories on dispose", async () => {
|
|
const tmp = await tmpdir({ git: true })
|
|
const dir = tmp.path
|
|
|
|
await tmp[Symbol.asyncDispose]()
|
|
|
|
const exists = await fs
|
|
.stat(dir)
|
|
.then(() => true)
|
|
.catch(() => false)
|
|
expect(exists).toBe(false)
|
|
})
|
|
})
|