style: fix linting issues met Prettier
This commit is contained in:
parent
25198273e5
commit
b973fb6d1b
2 changed files with 3 additions and 3 deletions
|
@ -81,6 +81,6 @@ test("Cannot sign in with invalid credentials", async ({ page }) => {
|
||||||
test("Cannot skip login", async ({ page }) => {
|
test("Cannot skip login", async ({ page }) => {
|
||||||
await page.goto("/user");
|
await page.goto("/user");
|
||||||
// Should redirect to login
|
// Should redirect to login
|
||||||
await expect(page.getByText('login')).toBeVisible();
|
await expect(page.getByText("login")).toBeVisible();
|
||||||
await expect(page.getByRole('button', { name: 'teacher' })).toBeVisible();
|
await expect(page.getByRole("button", { name: "teacher" })).toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
|
@ -116,6 +116,6 @@ export default defineConfig({
|
||||||
`,
|
`,
|
||||||
port: 9876,
|
port: 9876,
|
||||||
reuseExistingServer: !process.env.CI,
|
reuseExistingServer: !process.env.CI,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue