Files
AI/참고/playwright-main/examples/mock-battery/playwright.config.js

14 lines
262 B
JavaScript
Raw Normal View History

2026-05-12 19:40:31 +09:00
// @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'),
});