Files
Mana-Loop/playwright.config.ts
T
n8n-gitea 4f229cdd86
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m21s
desloppify
2026-05-30 16:30:32 +00:00

24 lines
483 B
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: 'e2e',
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: 0,
workers: 1,
timeout: 60000,
reporter: 'html',
use: {
baseURL: 'https://manaloop.tailf367e3.ts.net/',
trace: 'on-first-retry',
screenshot: 'on',
video: 'retain-on-failure',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
});