Remove unnecessary checks for execution completion from onboarding test (#6804)
We don't care if the axial fan loads under 15s on a cheap CI machine, at least not in this test.
This commit is contained in:
@ -63,7 +63,6 @@ test.describe('Onboarding tests', () => {
|
|||||||
shouldNormalise: true,
|
shouldNormalise: true,
|
||||||
})
|
})
|
||||||
await scene.connectionEstablished()
|
await scene.connectionEstablished()
|
||||||
await expect(toolbar.startSketchBtn).toBeEnabled({ timeout: 15_000 })
|
|
||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Go home and verify we still see the tutorial button, then begin it.', async () => {
|
await test.step('Go home and verify we still see the tutorial button, then begin it.', async () => {
|
||||||
@ -91,8 +90,6 @@ test.describe('Onboarding tests', () => {
|
|||||||
await test.step('Ensure we see the welcome screen in a new project', async () => {
|
await test.step('Ensure we see the welcome screen in a new project', async () => {
|
||||||
await expect(toolbar.projectName).toContainText('tutorial-project')
|
await expect(toolbar.projectName).toContainText('tutorial-project')
|
||||||
await expect(tutorialWelcomeHeading).toBeVisible()
|
await expect(tutorialWelcomeHeading).toBeVisible()
|
||||||
await scene.connectionEstablished()
|
|
||||||
await expect(toolbar.startSketchBtn).toBeEnabled({ timeout: 15_000 })
|
|
||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Test the clicking through the onboarding flow', async () => {
|
await test.step('Test the clicking through the onboarding flow', async () => {
|
||||||
@ -132,8 +129,6 @@ test.describe('Onboarding tests', () => {
|
|||||||
await test.step('Gets to the onboarding start', async () => {
|
await test.step('Gets to the onboarding start', async () => {
|
||||||
await expect(toolbar.projectName).toContainText('tutorial-project')
|
await expect(toolbar.projectName).toContainText('tutorial-project')
|
||||||
await expect(tutorialWelcomeHeading).toBeVisible()
|
await expect(tutorialWelcomeHeading).toBeVisible()
|
||||||
await scene.connectionEstablished()
|
|
||||||
await expect(toolbar.startSketchBtn).toBeEnabled({ timeout: 15_000 })
|
|
||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Dismiss the onboarding', async () => {
|
await test.step('Dismiss the onboarding', async () => {
|
||||||
@ -168,7 +163,6 @@ test.describe('Onboarding tests', () => {
|
|||||||
await expect(toolbar.projectName).toContainText('tutorial-project')
|
await expect(toolbar.projectName).toContainText('tutorial-project')
|
||||||
await expect(tutorialWelcomeHeading).toBeVisible()
|
await expect(tutorialWelcomeHeading).toBeVisible()
|
||||||
await scene.connectionEstablished()
|
await scene.connectionEstablished()
|
||||||
await expect(toolbar.startSketchBtn).toBeEnabled({ timeout: 15_000 })
|
|
||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Dismiss the onboarding', async () => {
|
await test.step('Dismiss the onboarding', async () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user