mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-01 08:34:02 +03:00
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
// @ts-check
|
|
const path = require('path')
|
|
|
|
const { defineConfig } = require('@playwright/test');
|
|
|
|
module.exports = defineConfig({
|
|
webServer: {
|
|
port: 9900,
|
|
command: 'npm run start',
|
|
},
|
|
// Test directory
|
|
testDir: path.join(__dirname, 'tests'),
|
|
});
|