ReviewOS

also looking at this

stacks/ts-cloud

fix(test): give the last three dashboard integrations a real timeout

#177
Merged glennmichael123 wants to merge fix/dashboard-integration-test-timeouts into main
3 files +15 -3
packages/ts-cloud/src/deploy/dashboard-onboarding.integration.test.tsmodified+5-1
Changes to packages/ts-cloud/src/deploy/dashboard-onboarding.integration.test.ts
@@ -216,5 +216,9 @@ describe('dashboard application onboarding integration', () => {
216216 })
217217 ).json()) as any
218218 expect(disconnected.registry).toMatchObject({ status: 'disconnected', credentialConfigured: false })
219 })
219 // 30s, not the 5000ms default. Booting the dashboard spawns a real
220 // `stx build --no-cache` of the cockpit (~1.7s measured), and this test then
221 // detects, resumes, validates and applies a plan on top of it. ~2s
222 // standalone, past 5000ms under the full 313-file run.
223 }, 30_000)
220224})