From 36ad8b65dcea9ebef418f266f52eb9b670d9ecea Mon Sep 17 00:00:00 2001 From: BryceLTaylor Date: Tue, 7 Dec 2021 13:06:56 -0500 Subject: [PATCH] add an await to the join tests to fix flakyness --- test/integration/join.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/join.test.js b/test/integration/join.test.js index 333c521aa..12346eac5 100644 --- a/test/integration/join.test.js +++ b/test/integration/join.test.js @@ -24,7 +24,7 @@ describe('www-integration join flow', () => { afterAll(async () => await driver.quit()); beforeEach(async () => { - driver.get(rootUrl); + await driver.get(rootUrl); await clickXpath('//a[@class="registrationLink"]'); });