Skip to content

Commit 3322491

Browse files
committed
Bump timeout on Windows
1 parent 6bc6217 commit 3322491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/artifact-scanner.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test("scanArtifactsForTokens handles files without tokens", async (t) => {
5757
});
5858

5959
test("scanArtifactsForTokens finds token in debug artifacts", async (t) => {
60-
t.timeout(10000); // 10 seconds
60+
t.timeout(os.platform() === "win32" ? 30000 : 10000); // 30 seconds on Windows, 10 seconds on other platforms
6161
const messages: LoggedMessage[] = [];
6262
const logger = getRecordingLogger(messages, { logToConsole: false });
6363
// The zip here is a regression test based on

0 commit comments

Comments
 (0)