Skip to content

Commit

Permalink
test: fix flaky tests when ran on GCP (#1701)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-goog authored Nov 29, 2023
1 parent 0c361a1 commit 3e2cb98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test.googleauth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ describe('googleauth', () => {
return {
done: () => {
return Promise.allSettled([
primary.done(),
secondary.done(),
universeDomain.done(),
(async () => primary.done())(),
(async () => secondary.done())(),
(async () => universeDomain.done())(),
]);
},
};
Expand Down

0 comments on commit 3e2cb98

Please sign in to comment.