style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-21 15:08:07 +00:00
parent 25198273e5
commit b973fb6d1b
2 changed files with 3 additions and 3 deletions

View file

@ -81,6 +81,6 @@ test("Cannot sign in with invalid credentials", async ({ page }) => {
test("Cannot skip login", async ({ page }) => {
await page.goto("/user");
// Should redirect to login
await expect(page.getByText('login')).toBeVisible();
await expect(page.getByRole('button', { name: 'teacher' })).toBeVisible();
await expect(page.getByText("login")).toBeVisible();
await expect(page.getByRole("button", { name: "teacher" })).toBeVisible();
});

View file

@ -116,6 +116,6 @@ export default defineConfig({
`,
port: 9876,
reuseExistingServer: !process.env.CI,
}
},
],
});