diff --git a/e2e/playwright/zookeeper.spec.ts b/e2e/playwright/zookeeper.spec.ts index 2efe5a474a0..05f23a1dd62 100644 --- a/e2e/playwright/zookeeper.spec.ts +++ b/e2e/playwright/zookeeper.spec.ts @@ -45,12 +45,18 @@ test.describe('Zookeeper tests', { tag: '@desktop' }, () => { await expect(copilot.thinkingView).not.toBeVisible({ timeout: 60_000, }) + + await toolbar.closePane(DefaultLayoutPaneID.TTC) await toolbar.openPane(DefaultLayoutPaneID.Code) await editor.expectEditor.toContain('startSketchOn') await editor.expectEditor.toContain('extrude') await editor.expectEditor.toContain('10') await scene.settled(cmdBar) - // TODO: maybe check for a sweep artifact in the debug pane? + + await toolbar.closePane(DefaultLayoutPaneID.Code) + await toolbar.openPane(DefaultLayoutPaneID.FeatureTree) + const extrude = await toolbar.getFeatureTreeOperation('cube', 0) + await expect(extrude).toBeVisible() }) }