Skip to content

Commit 26c00ff

Browse files
committed
wait longer for node to stop
1 parent 29b58ec commit 26c00ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/specs/ci/test.e2e.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,15 @@ describe('Splash screen tests', () => {
138138
// await browser.pause(15000);
139139
// await expect(await $('div*=Stopping')).toBeDisplayed();
140140
// ...
141+
await $('div*=Stopped').waitForExist({ timeout: 240000 }); // default wait time is only 5 seconds
141142
await expect(await $('div*=Stopped')).toBeDisplayed();
142143
await expect(await $('span*=Resume')).toBeDisplayed();
143144
// await browser.pause(15000);
144145
// await browser.pause(2000);
145146
// after docker containers are downloaded and the node is started, the node should be online
146147
// await expect(await $('div*=Online')).toBeDisplayed();
147148
// await expect(await $('div*=')).toBeDisplayed();
148-
}).timeout(240000); // wait 6 minutes for the node to download & start
149+
}).timeout(600000); // wait 10 minutes for the node to download & start
149150
}
150151
});
151152

0 commit comments

Comments
 (0)