Skip to content

Commit

Permalink
fix: e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed May 18, 2024
1 parent ab09b61 commit a361256
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ import { expect, test } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('/');

await expect(page.getByText(/hello world/i)).toBeVisible();
await expect(
page.getByText(/rethinking student productivity/i),
).toBeVisible();
});

0 comments on commit a361256

Please sign in to comment.