Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/app-cli/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@ export default defineConfig({
globals: true,
environment: 'node',
pool: 'forks',
// bridge.test.ts spawns `tsx` on a fixture through StdioClientTransport and
// completes an MCP handshake before it asserts anything. On vitest's 5s
// default that passed locally and on the affected lane, then timed out
// three times in the merge queue — where `mode: full` actually runs this
// package — and ejected an unrelated PR (#2243). 30000 matches the value
// used across the rest of the workspace.
testTimeout: 30000,
// Hooks do not inherit testTimeout; see TESTING_STANDARD.md.
hookTimeout: 30000,
},
});
Loading
Loading