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
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-atlas-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "Cleanup stale Atlas test environments"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
- cron: "0 * * * *"

permissions: {}

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const defaultTestConfig: UserConfig = {
loggers: ["stderr"],
};

export const DEFAULT_LONG_RUNNING_TEST_WAIT_TIMEOUT_MS = 1_200_000;
export const DEFAULT_LONG_RUNNING_TEST_WAIT_TIMEOUT_MS = 900_000;
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The raw value 900_000 is a magic number and reduces readability; consider expressing it as 15 * 60 * 1000 to make the intended duration (15 minutes) explicit.

Suggested change
export const DEFAULT_LONG_RUNNING_TEST_WAIT_TIMEOUT_MS = 900_000;
export const DEFAULT_LONG_RUNNING_TEST_WAIT_TIMEOUT_MS = 15 * 60 * 1000; // 15 minutes

Copilot uses AI. Check for mistakes.

export function setupIntegrationTest(
getUserConfig: () => UserConfig,
Expand Down
Loading