Skip to content

Commit

Permalink
wait longer for node to stop
Browse files Browse the repository at this point in the history
  • Loading branch information
jgresham committed Sep 19, 2024
1 parent 29b58ec commit 26c00ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/specs/ci/test.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,15 @@ describe('Splash screen tests', () => {
// await browser.pause(15000);
// await expect(await $('div*=Stopping')).toBeDisplayed();
// ...
await $('div*=Stopped').waitForExist({ timeout: 240000 }); // default wait time is only 5 seconds
await expect(await $('div*=Stopped')).toBeDisplayed();
await expect(await $('span*=Resume')).toBeDisplayed();
// await browser.pause(15000);
// await browser.pause(2000);
// after docker containers are downloaded and the node is started, the node should be online
// await expect(await $('div*=Online')).toBeDisplayed();
// await expect(await $('div*=')).toBeDisplayed();
}).timeout(240000); // wait 6 minutes for the node to download & start
}).timeout(600000); // wait 10 minutes for the node to download & start
}
});

Expand Down

0 comments on commit 26c00ff

Please sign in to comment.