Workaround stuck CI

This commit is contained in:
Kaz 2024-11-18 13:47:08 -08:00
parent f3176377b5
commit 74313842ba

View File

@ -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()