Skip to content
Snippets Groups Projects
Unverified Commit e7a83e86 authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge pull request #916 from HumanBrainProject/bugfix_history

[skip ci] chore: history e2e increase wait time
parents f84e5333 0a859d53
No related branches found
No related tags found
No related merge requests found
......@@ -35,9 +35,11 @@ describe('> navigating IAV via history', () => {
position: [ Math.round(width / 4), Math.round(height / 4) ],
delta: [ Math.round(width / 8), Math.round(height / 8) ]
})
await iavPage.wait(2000)
await iavPage.wait(5000)
await iavPage.waitUntilAllChunksLoaded()
await iavPage.historyBack()
await iavPage.wait(2000)
await iavPage.wait(5000)
await iavPage.waitUntilAllChunksLoaded()
const nav2 = await iavPage.getNavigationState()
// expect some positions to change after dragging
......@@ -48,9 +50,11 @@ describe('> navigating IAV via history', () => {
it('> history back, viewer should despawn ', async () => {
await iavPage.wait(2000)
await iavPage.wait(5000)
await iavPage.waitUntilAllChunksLoaded()
await iavPage.historyBack()
await iavPage.wait(2000)
await iavPage.wait(5000)
await iavPage.waitUntilAllChunksLoaded()
const flag = await iavPage.viewerIsPopulated()
expect(flag).toBeFalse()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment