Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SnowCait committed Oct 21, 2023
1 parent a21915c commit b2c1137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/tests/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from '@playwright/test';

test('index page has expected h1', async ({ page }) => {
test('index page has expected logo', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('heading', { name: 'nostter' })).toBeVisible();
await expect(page.getByRole('img', { name: 'nostter' })).toBeVisible();
});

0 comments on commit b2c1137

Please sign in to comment.