refactor: rename Tool.alpha to Tool.experimental

This commit is contained in:
Siddharth Kumar Sah
2026-03-26 01:10:51 +08:00
parent ab370a74fe
commit 585d66f0c9
178 changed files with 5637 additions and 4082 deletions
+2 -4
View File
@@ -1,4 +1,4 @@
import { test, expect } from "./helpers";
import { expect, test } from "./helpers";
test.describe("Theme System", () => {
test("page defaults to light theme", async ({ loggedInPage: page }) => {
@@ -16,9 +16,7 @@ test.describe("Theme System", () => {
await expect(themeBtn).toBeVisible({ timeout: 10_000 });
});
test("privacy policy link is in footer", async ({
loggedInPage: page,
}) => {
test("privacy policy link is in footer", async ({ loggedInPage: page }) => {
await expect(page.getByText("Privacy Policy")).toBeVisible();
});
});