mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-10 02:02:31 +08:00
Fixes based on Gemini and Codex review: - Remove brittle nth(1) selector in keyboard tests - Remove waitForTimeout(500) race condition - Remove if(isVisible) silent skip patterns - Add proper assertions instead of no-op checks - Remove expect(count >= 0) that always passes - Remove unused hasProviderUI variable All 14 E2E tests and 39 unit tests pass.
30 lines
997 B
TypeScript
30 lines
997 B
TypeScript
import { expect, test } from "@playwright/test"
|
|
|
|
test.describe("Model Configuration", () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto("/", { waitUntil: "networkidle" })
|
|
await page
|
|
.locator("iframe")
|
|
.waitFor({ state: "visible", timeout: 30000 })
|
|
})
|
|
|
|
test("settings dialog opens and shows configuration options", async ({
|
|
page,
|
|
}) => {
|
|
// Open settings
|
|
const settingsButton = page.locator(
|
|
'button[aria-label*="settings"], button:has(svg[class*="settings"])',
|
|
)
|
|
await expect(settingsButton).toBeVisible()
|
|
await settingsButton.click()
|
|
|
|
const dialog = page.locator('[role="dialog"]')
|
|
await expect(dialog).toBeVisible({ timeout: 5000 })
|
|
|
|
// Settings dialog should have some configuration UI
|
|
const buttons = dialog.locator("button")
|
|
const buttonCount = await buttons.count()
|
|
expect(buttonCount).toBeGreaterThan(0)
|
|
})
|
|
})
|