-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbunfig.toml
More file actions
50 lines (50 loc) · 2.12 KB
/
bunfig.toml
File metadata and controls
50 lines (50 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Files that import from 'vitest' must be ignored by `bun test`.
# Bun executes their top-level `vi.mock(...)` calls, which can replace
# real modules (e.g. `bun:sqlite`) and corrupt unrelated `bun:test` files
# that run in the same process.
# Keep in sync with the test files that use `import ... from 'vitest'`.
[test]
pathIgnorePatterns = [
"test/constants/loop.test.ts",
"test/deterministic-decomposer.test.ts",
"test/hooks/audit-rotate-ordering.test.ts",
"test/hooks/forge-session-attach.test.ts",
"test/hooks/host-side-effects-unwarp.test.ts",
"test/hooks/loop-event-gate.test.ts",
"test/hooks/loop-idle-gate.test.ts",
"test/hooks/loop-section-audit-retry.test.ts",
"test/hooks/plan-approval-dedupe.test.ts",
"test/hooks/plan-approval-worktree-timing.test.ts",
"test/index/session-lookup.test.ts",
"test/loop-runtime-audit-permissions.test.ts",
"test/loop-status-tool.test.ts",
"test/loop/cancel.test.ts",
"test/loop/in-flight-guard.test.ts",
"test/loop/prompts.test.ts",
"test/loop/state-mapper.test.ts",
"test/loop/termination.test.ts",
"test/loop/transitions.test.ts",
"test/plan-approval.test.ts",
"test/plan-execution.test.ts",
"test/sandbox/context.test.ts",
"test/services/execution-attach-cleanup.test.ts",
"test/services/execution-in-flight-guard.test.ts",
"test/services/execution-restart.test.ts",
"test/services/execution.start-loop.test.ts",
"test/services/parse-section-summary.test.ts",
"test/services/select-initial-worktree-session.test.ts",
"test/tui/execute-plan-panel-busy.test.ts",
"test/utils/tui-client-await-workspace-connected.test.ts",
"test/utils/tui-client-loop-inline-plan.test.ts",
"test/utils/tui-client-select-session.test.ts",
"test/utils/tui-client-variants.test.ts",
"test/utils/tui-client-warp-flow.test.ts",
"test/utils/tui-client-workspaces.test.ts",
"test/utils/workspace-status-registry.test.ts",
"test/utils/worktree-cleanup.test.ts",
"test/workspace/classify-stale.test.ts",
"test/workspace/forge-adapter-e2e.test.ts",
"test/workspace/forge-adapter.test.ts",
"test/workspace/forge-worktree.test.ts",
"test/workspace/sweep-stale.test.ts",
]