From 0d9707ea2739273f8e4f23182e96531fea916a3c Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Wed, 1 Apr 2026 12:20:06 -0700 Subject: [PATCH] fix: disable test isolation in bunfig.toml Comment out isolation = true as it was causing test execution issues. Tests run correctly without isolation when DOM cleanup is properly managed. --- bunfig.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bunfig.toml b/bunfig.toml index 51d7612..5b262e8 100644 --- a/bunfig.toml +++ b/bunfig.toml @@ -1,4 +1,4 @@ [test] preload = ["./src/__tests__/bun-setup.ts"] exclude = ["e2e/**", "**/e2e/**"] -isolation = true +# isolation = true