9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
const { defineConfig } = require('@playwright/test');
|
|
|
|
module.exports = defineConfig({
|
|
testDir: './tests',
|
|
timeout: 30000,
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:8095',
|
|
},
|
|
});
|