Skip to content

Commit

Permalink
Workaround stuck CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kazcw committed Nov 18, 2024
1 parent f317637 commit 7431384
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/ide-desktop/client/tests/createNewProject.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ electronTest('Create new project', async ({ page }) => {
// We see the node type and visualization, so the engine is running the program
await expect(page.locator('.node-type')).toHaveText('Table', { timeout: 30000 })
await expect(page.locator('.TableVisualization')).toBeVisible({ timeout: 30000 })
await expect(page.locator('.TableVisualization')).toContainText('Welcome To Enso!')
await expect(page.locator('.TableVisualization')).toContainText('Welcome To Enso!', {
timeout: 30000,
})

// We can add new node and see suggestions.
await page.locator('.GraphNode').click()
Expand Down

0 comments on commit 7431384

Please sign in to comment.