Files
livegraphs-django/seed.spec.ts
Kaj Kowalski 45f003eafa 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.
2025-11-05 20:27:27 +01:00

8 lines
159 B
TypeScript

import { test } from "@playwright/test";
test.describe("Test group", () => {
test("seed", async ({ page: _page }) => {
// generate code here.
});
});