Skip to content

Commit

Permalink
modify test?
Browse files Browse the repository at this point in the history
  • Loading branch information
corn-potage committed Sep 17, 2024
1 parent f87eab3 commit bd10205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/specs/longRunningEthNodes.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ const addNode = async () => {

const testsForEachNode = async () => {
describe('Should pass all of the eth node successfully starts syncing tests:', async () => {
it('Ethereum Node screen should be displayed with syncing and stop btn', async () => {
it('Ethereum Node screen should be displayed with starting and starting... btn', async () => {
await expect(await $('div*=Ethereum Node')).toBeDisplayed();
await expect(await $('div*=Starting')).toBeDisplayed();
await expect(await $('span*=Stop')).toBeDisplayed();
await expect(await $('span*=Starting...')).toBeDisplayed();
// after docker containers are downloaded and the node is started, the node should be online
// await expect(await $('div*=Online')).toBeDisplayed();
}).timeout(120000); // wait 3 minutes for the node to download & start
Expand Down

0 comments on commit bd10205

Please sign in to comment.