mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
add an await to the join tests to fix flakyness
This commit is contained in:
parent
46a8d162f5
commit
36ad8b65dc
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ describe('www-integration join flow', () => {
|
||||||
afterAll(async () => await driver.quit());
|
afterAll(async () => await driver.quit());
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
driver.get(rootUrl);
|
await driver.get(rootUrl);
|
||||||
await clickXpath('//a[@class="registrationLink"]');
|
await clickXpath('//a[@class="registrationLink"]');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue