Skip to content

Commit

Permalink
removed office tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HRN authored and HRN committed Aug 30, 2024
1 parent d5f4d68 commit d8ca380
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,3 @@ test('index page has expected h2', async ({ page }) => {
await page.goto('/');
expect(await page.textContent('h2')).toBe('1. Enter your details');
});

test('office', async ({ page }) => {
await page.goto('/');

await page.selectOption('[aria-label="office"]', 'Göteborg');
expect(await page.textContent('#other-office-memo')).toContain(
'Psst, du vet väl att vi finns i Stockholm också?'
);

await page.selectOption('[aria-label="office"]', 'Stockholm');
expect(await page.textContent('#other-office-memo')).toContain(
'Psst, du vet väl att vi finns i Göteborg också?'
);
});

0 comments on commit d8ca380

Please sign in to comment.