13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
const { defineConfig } = require('@playwright/test');
|
|
|
|
module.exports = defineConfig({
|
|
testDir: './tests',
|
|
use: {
|
|
baseURL: 'http://localhost:3000',
|
|
},
|
|
webServer: {
|
|
command: 'npm start',
|
|
url: 'http://localhost:3000',
|
|
reuseExistingServer: !process.env.CI,
|
|
},
|
|
});
|