From 45f003eafaaba978c3b866e800931244885a6af1 Mon Sep 17 00:00:00 2001 From: Kaj Kowalski Date: Wed, 5 Nov 2025 20:27:27 +0100 Subject: [PATCH] refactor(test): clean up unused import and param Removes an unused assertion import and aliases the unused test parameter to suppress linter warnings. Keeps the test scaffold clean without changing behavior. --- seed.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed.spec.ts b/seed.spec.ts index 683fe83..f5a0e8b 100644 --- a/seed.spec.ts +++ b/seed.spec.ts @@ -1,7 +1,7 @@ -import { test, expect } from "@playwright/test"; +import { test } from "@playwright/test"; test.describe("Test group", () => { - test("seed", async ({ page }) => { + test("seed", async ({ page: _page }) => { // generate code here. }); });