Skip to content

Commit cd08d1b

Browse files
committed
fix: update e2e tests
1 parent 3d3c703 commit cd08d1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/home.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test("has navigation links", async ({ page }) => {
2828
await sleep(1000);
2929

3030
for (const link of Object.values(links)) {
31-
if (typeof link != "string") continue;
31+
if (typeof link !== "string") continue;
3232

3333
expect(await page.$(`a[href="${link}"]`)).not.toBeNull();
3434
}

0 commit comments

Comments
 (0)