Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeart committed Dec 9, 2023
1 parent ccc12e4 commit 52d6a07
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e/flows/bootstrap-navigation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ test.describe('Ember-Bootstrap route', () => {
await expect(page).not.toHaveTitle(/Bootstrap/);
await page.click('a[href="/bootstrap"]');
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Bootstrap/);
await expect(page).toHaveTitle(/Bootstrap/, {
timeout: 5000,
});
});
});

0 comments on commit 52d6a07

Please sign in to comment.