Archipelago — open-source initial import

This commit is contained in:
Archipelago
2026-08-12 10:55:49 +00:00
commit e3bcd9fca9
2056 changed files with 468069 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './e2e',
outputDir: './e2e/test-results',
timeout: 60_000,
expect: {
timeout: 10_000,
},
use: {
baseURL: process.env.ARCHY_BASE_URL ?? 'http://localhost:8100',
viewport: { width: 1440, height: 900 },
screenshot: 'only-on-failure',
trace: 'off',
ignoreHTTPSErrors: true,
},
projects: [
{
name: 'chromium',
use: { browserName: 'chromium' },
},
],
})