Skip to content

Commit

Permalink
try to make serial test less flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
david-crespo committed Aug 16, 2024
1 parent a82902f commit dc6be35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/instance-serial.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ test('serial console can connect while starting', async ({ page }) => {
await page.getByRole('link', { name: 'Connect' }).click()

// The message goes from creating to starting and then disappears once
// the instance is running
await expect(page.getByText('The instance is creating')).toBeVisible()
// the instance is running. skip the check for "creating" because it can
// go by quickly
await expect(page.getByText('Waiting for the instance to start')).toBeVisible()
await expect(page.getByText('The instance is starting')).toBeVisible()
await expect(page.getByText('The instance is')).toBeHidden()
Expand Down

0 comments on commit dc6be35

Please sign in to comment.