Cleanup code and tests
CI Pipeline / test (20) (pull_request) Successful in 2m55s
CI Pipeline / test (18) (pull_request) Successful in 3m32s
CI Pipeline / e2e (webkit) (pull_request) Has been cancelled
CI Pipeline / visual-regression (pull_request) Has been cancelled
CI Pipeline / performance (pull_request) Has been cancelled
CI Pipeline / storybook (pull_request) Has been cancelled
CI Pipeline / lint (pull_request) Has been cancelled
CI Pipeline / build (pull_request) Has been cancelled
CI Pipeline / e2e (chromium) (pull_request) Has been cancelled
CI Pipeline / e2e (firefox) (pull_request) Has been cancelled

This commit is contained in:
adilallo
2025-10-14 17:34:05 -06:00
parent 9de194bfc0
commit c4a631a5d8
50 changed files with 436 additions and 370 deletions
+6 -6
View File
@@ -71,7 +71,7 @@ test.describe("Select Component Storybook Tests", () => {
test("shows different sizes correctly", async ({ page }) => {
// Navigate to All Sizes story
await page.goto(
"http://localhost:6006/?path=/story/forms-select--all-sizes"
"http://localhost:6006/?path=/story/forms-select--all-sizes",
);
const selectButtons = page.getByRole("button");
@@ -89,7 +89,7 @@ test.describe("Select Component Storybook Tests", () => {
test("shows different states correctly", async ({ page }) => {
// Navigate to All States story
await page.goto(
"http://localhost:6006/?path=/story/forms-select--all-states"
"http://localhost:6006/?path=/story/forms-select--all-states",
);
const selectButtons = page.getByRole("button");
@@ -160,7 +160,7 @@ test.describe("Select Component Storybook Tests", () => {
test("disabled state prevents interaction", async ({ page }) => {
// Navigate to Disabled story
await page.goto(
"http://localhost:6006/?path=/story/forms-select--disabled"
"http://localhost:6006/?path=/story/forms-select--disabled",
);
const selectButton = page.getByRole("button");
@@ -177,7 +177,7 @@ test.describe("Select Component Storybook Tests", () => {
test("interactive story allows selection", async ({ page }) => {
// Navigate to Interactive story
await page.goto(
"http://localhost:6006/?path=/story/forms-select--interactive"
"http://localhost:6006/?path=/story/forms-select--interactive",
);
const selectButton = page.getByRole("button");
@@ -195,7 +195,7 @@ test.describe("Select Component Storybook Tests", () => {
test("horizontal label variant displays correctly", async ({ page }) => {
// Navigate to Horizontal Label story
await page.goto(
"http://localhost:6006/?path=/story/forms-select--horizontal-label"
"http://localhost:6006/?path=/story/forms-select--horizontal-label",
);
const selectButton = page.getByRole("button");
@@ -259,7 +259,7 @@ test.describe("Select Component Storybook Tests", () => {
test("focus behavior works correctly", async ({ page }) => {
// Navigate to Interactive story
await page.goto(
"http://localhost:6006/?path=/story/forms-select--interactive"
"http://localhost:6006/?path=/story/forms-select--interactive",
);
const selectButton = page.getByRole("button");