Skip to content

Commit

Permalink
chore(cli-repl): bump timeout for AWS auth e2e tests (#1464)
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax authored May 17, 2023
1 parent ee64a1b commit ed3a8dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli-repl/test/e2e-aws.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ function getConnectionString(username?: string, password?: string): string {
return `mongodb+srv://${auth}${ATLAS_CLUSTER_HOST}/?authSource=%24external&authMechanism=MONGODB-AWS`;
}

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

before(function() {
Expand Down

0 comments on commit ed3a8dc

Please sign in to comment.