st-mobile / tests /playwright.config.js
Nanny7's picture
Initial deploy with custom mobile UI
6efa67a
import { defineConfig } from '@playwright/test';
export default defineConfig({
testMatch: '*.e2e.js',
use: {
baseURL: 'http://127.0.0.1:8000',
video: 'only-on-failure',
screenshot: 'only-on-failure',
},
workers: 4,
fullyParallel: true,
});