We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413316e commit 70c0ff8Copy full SHA for 70c0ff8
1 file changed
ui/vitest.config.ts
@@ -58,6 +58,10 @@ const workspaceSourceAliases = [
58
const sharedUiTestConfig = {
59
isolate: false,
60
pool: resolveDefaultVitestPool(),
61
+ // Real-Chromium layout tests exceed Vitest's 5s default on 4vcpu CI runners;
62
+ // without this the checks-ui lane flakes on cold hover/interaction tests.
63
+ testTimeout: 60_000,
64
+ hookTimeout: 60_000,
65
} as const;
66
const nodeDrivenBrowserLayoutTests = [
67
"src/ui/chat/sidebar-session-picker.browser.test.ts",
0 commit comments