Skip to content

Commit ed3a8dc

Browse files
authored
chore(cli-repl): bump timeout for AWS auth e2e tests (#1464)
1 parent ee64a1b commit ed3a8dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cli-repl/test/e2e-aws.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ function getConnectionString(username?: string, password?: string): string {
6262
return `mongodb+srv://${auth}${ATLAS_CLUSTER_HOST}/?authSource=%24external&authMechanism=MONGODB-AWS`;
6363
}
6464

65-
describe('e2e AWS AUTH', () => {
65+
describe('e2e AWS AUTH', function() {
66+
this.timeout(60_000); // AWS auth tests can take longer than the default timeout in CI
6667
let expectedAssumedRole: string;
6768

6869
before(function() {

0 commit comments

Comments
 (0)