style: fix linting issues met Prettier
This commit is contained in:
parent
0154af4de8
commit
a74e786da2
5 changed files with 139 additions and 136 deletions
|
@ -1,12 +1,12 @@
|
|||
import { test, expect } from './fixtures.js';
|
||||
import { test, expect } from "./fixtures.js";
|
||||
|
||||
test('Users can filter', async ({ page }) => {
|
||||
await page.goto('/user');
|
||||
test("Users can filter", async ({ page }) => {
|
||||
await page.goto("/user");
|
||||
|
||||
await page.getByRole('combobox').filter({ hasText: 'Select a themeAll' }).locator('i').click();
|
||||
await page.getByText('Nature and climate').click();
|
||||
await page.getByRole('combobox').filter({ hasText: 'Select ageAll agesSelect age' }).locator('i').click();
|
||||
await page.getByText('and older').click();
|
||||
await page.getByRole("combobox").filter({ hasText: "Select a themeAll" }).locator("i").click();
|
||||
await page.getByText("Nature and climate").click();
|
||||
await page.getByRole("combobox").filter({ hasText: "Select ageAll agesSelect age" }).locator("i").click();
|
||||
await page.getByText("and older").click();
|
||||
|
||||
await expect(page.getByRole('link', { name: 'AI and Climate Students in' })).toBeVisible();
|
||||
await expect(page.getByRole("link", { name: "AI and Climate Students in" })).toBeVisible();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue