Skip to content

Commit

Permalink
Add s23positions page.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanThatOneKid committed Jan 18, 2023
1 parent 3ef1768 commit 279ef0f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/routes/(site)/s23positions/page.test.ts
@@ -0,0 +1,8 @@
import { expect, test } from '@playwright/test';

test.describe.configure({ mode: 'parallel' });

test('s23positions page has expected h1', async ({ page }) => {
await page.goto('/s23positions');
expect(await page.textContent('h1')).toBe('Spring 2023 board applications');
});

0 comments on commit 279ef0f

Please sign in to comment.