Files
jongryangje/playwright.production.config.js

23 lines
435 B
JavaScript
Raw Permalink Normal View History

// @ts-check
const { defineConfig } = require('@playwright/test');
module.exports = defineConfig({
testDir: './e2e',
fullyParallel: false,
workers: 1,
timeout: 60000,
reporter: 'list',
use: {
baseURL: 'https://trash.wxn.co.kr',
ignoreHTTPSErrors: true,
screenshot: 'only-on-failure',
locale: 'ko-KR',
},
projects: [
{
name: 'chromium',
use: { browserName: 'chromium' },
},
],
});