desloppify
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m21s

This commit is contained in:
2026-05-30 16:30:32 +00:00
parent 90b309885e
commit 4f229cdd86
13 changed files with 634 additions and 26 deletions
+7 -6
View File
@@ -2,15 +2,16 @@ import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: 'e2e',
fullyParallel: true,
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
retries: 0,
workers: 1,
timeout: 60000,
reporter: 'html',
use: {
baseURL: 'http://localhost:3000',
baseURL: 'https://manaloop.tailf367e3.ts.net/',
trace: 'on-first-retry',
screenshot: 'only-on-failure',
screenshot: 'on',
video: 'retain-on-failure',
},
projects: [
@@ -19,4 +20,4 @@ export default defineConfig({
use: { ...devices['Desktop Chrome'] },
},
],
});
});