mirror of
https://github.com/ueberdosis/tiptap.git
synced 2026-09-14 16:14:40 +08:00
3aab4cccbc
* chore: complete Vite+ migration * chore: refine Vite+ migration
29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
import { defineConfig, devices } from '@playwright/test'
|
|
|
|
process.env.NODE_OPTIONS = [process.env.NODE_OPTIONS, '--require tsconfig-paths/register']
|
|
.filter(Boolean)
|
|
.join(' ')
|
|
|
|
export default defineConfig({
|
|
testDir: './demos',
|
|
testMatch: '**/*.spec.ts',
|
|
fullyParallel: false,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
reporter: process.env.CI ? [['github'], ['blob']] : [['line'], ['html', { open: 'never' }]],
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:4080',
|
|
trace: 'on-first-retry',
|
|
},
|
|
projects: [
|
|
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
|
|
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } },
|
|
],
|
|
webServer: {
|
|
command: 'vp -C demos run start:e2e',
|
|
url: 'http://127.0.0.1:4080',
|
|
reuseExistingServer: !process.env.CI,
|
|
timeout: 120000,
|
|
},
|
|
})
|