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
4 changes: 3 additions & 1 deletion sdk/typescript/scripts/run-windows-ci-tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ const results = await Promise.all(
? ""
: " --test-name-pattern " + testNamePattern),
);
const args = ["test", "--timeout", "30000"];
// Native Windows credential and document checks can exceed 30 seconds.
// The workflow still bounds each complete shard to ten minutes.
const args = ["test", "--timeout", "120000"];
if (testNamePattern !== undefined) {
args.push("--test-name-pattern", testNamePattern);
}
Expand Down
Loading