refactor: remove pocketbase (#1138)

This commit is contained in:
Jonas Plum
2025-09-02 21:58:08 +02:00
committed by GitHub
parent f28c238135
commit eba2615ec0
435 changed files with 42677 additions and 4730 deletions

View File

@@ -0,0 +1,21 @@
import { defineConfig, devices } from '@playwright/test'
export default defineConfig({
testDir: './tests/demo',
fullyParallel: true,
webServer: {
command: 'make -C .. dev-demo',
port: 8090,
reuseExistingServer: !process.env.CI,
timeout: 120000,
},
use: {
baseURL: 'http://localhost:8090/ui/',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
})