Skip to content
Merged
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
10 changes: 8 additions & 2 deletions scripts/ci/dev-up.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1806,15 +1806,21 @@ for (const platform of platforms) {
}
})

test(`${platform.name}: high-volume stdout and stderr cannot deadlock marker acceptance`, { concurrency: false }, async () => {
test(`${platform.name}: high-volume stdout and stderr cannot deadlock marker acceptance`, { concurrency: false, timeout: 60_000 }, async () => {
const fixture = await createFixture(platform)
const apiPort = await getFreePort()
const frontendPort = await getFreePort()
try {
const result = runLauncher(platform, fixture, {
apiPort,
timeout: 30_000,
env: { FAKE_FRONTEND_PORT: String(frontendPort), FAKE_FRONTEND_MODE: 'high-volume' },
env: {
FAKE_FRONTEND_PORT: String(frontendPort),
FAKE_FRONTEND_MODE: 'high-volume',
// Git Bash on Windows needs more time to drain the synthetic 4,000-line burst;
// the production default remains 60 seconds.
TASKDECK_DEV_FRONTEND_READY_TIMEOUT_SECONDS: '10',
},
})
assert.ifError(result.error)
assert.equal(result.status, 0, combinedOutput(result))
Expand Down