Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed debug-screenshot.png
Binary file not shown.
Binary file removed overtype-debug.png
Binary file not shown.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"dependencies": {
"@heroui/button": "^2.2.24",
"@heroui/card": "^2.2.23",
"@heroui/code": "^2.2.18",
"@heroui/dropdown": "^2.3.24",
"@heroui/input": "^2.4.25",
Expand All @@ -20,6 +21,7 @@
"@heroui/snippet": "^2.2.25",
"@heroui/switch": "^2.2.22",
"@heroui/system": "^2.4.20",
"@heroui/table": "^2.2.24",
"@heroui/theme": "^2.4.20",
"@heroui/use-theme": "2.1.10",
"@react-aria/visually-hidden": "3.8.26",
Expand Down
76 changes: 0 additions & 76 deletions playwright-report/index.html

This file was deleted.

20 changes: 10 additions & 10 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
import { defineConfig, devices } from '@playwright/test';
import { defineConfig, devices } from "@playwright/test";

export default defineConfig({
testDir: './tests',
testDir: "./tests",
timeout: 30 * 1000,
expect: {
timeout: 5000
timeout: 5000,
},
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
reporter: "html",
use: {
baseURL: 'http://localhost:5176',
trace: 'on-first-retry',
baseURL: "http://localhost:5176",
trace: "on-first-retry",
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
webServer: {
command: 'yarn dev',
command: "yarn dev",
port: 5176,
reuseExistingServer: !process.env.CI,
},
});
});
Loading
Loading