playwright/examples/mock-battery/playwright.config.js
2022-02-28 16:16:05 -08:00

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;