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("Smoke tests", () => {
test("login page renders correctly", async ({ page }) => {
@@ -7,9 +7,7 @@ test.describe("Smoke tests", () => {
await expect(page.getByRole("heading", { name: /login/i })).toBeVisible();
await expect(page.getByLabel("Username")).toBeVisible();
await expect(page.getByLabel("Password")).toBeVisible();
await expect(
page.getByRole("button", { name: /login/i }),
).toBeVisible();
await expect(page.getByRole("button", { name: /login/i })).toBeVisible();
// Right panel marketing text
await expect(page.getByText("Your one-stop-shop")).toBeVisible();
});