summaryrefslogtreecommitdiffhomepage
path: root/packages/shared/test
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/test')
-rw-r--r--packages/shared/test/util/effect-flock.test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/shared/test/util/effect-flock.test.ts b/packages/shared/test/util/effect-flock.test.ts
index 6e094c2e1..bd71e4f02 100644
--- a/packages/shared/test/util/effect-flock.test.ts
+++ b/packages/shared/test/util/effect-flock.test.ts
@@ -317,6 +317,7 @@ describe("util.effect-flock", () => {
})
const result = yield* flock.withLock(Effect.void, "eflock:perm", dir).pipe(Effect.exit)
+ // oxlint-disable-next-line no-base-to-string -- Exit has a useful toString for test assertions
expect(String(result)).toContain("PermissionDenied")
yield* Effect.promise(() => fs.chmod(dir, 0o700).then(() => fs.rm(tmp, { recursive: true, force: true })))
}),