mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-02-13 10:29:30 +01:00
Removes an unused assertion import and aliases the unused test parameter to suppress linter warnings. Keeps the test scaffold clean without changing behavior.
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import { test } from "@playwright/test";
|
|
|
|
test.describe("Test group", () => {
|
|
test("seed", async ({ page: _page }) => {
|
|
// generate code here.
|
|
});
|
|
});
|