mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
17 lines
337 B
JavaScript
17 lines
337 B
JavaScript
// @ts-check
|
|
const path = require('path')
|
|
|
|
/**
|
|
* @see https://playwright.dev/docs/test-configuration
|
|
* @type{import('@playwright/test').PlaywrightTestConfig}
|
|
*/
|
|
const config = {
|
|
webServer: {
|
|
port: 9900,
|
|
command: 'npm run start',
|
|
},
|
|
// Test directory
|
|
testDir: path.join(__dirname, 'tests'),
|
|
};
|
|
module.exports = config;
|