Files
AI/참고/playwright-main/examples/mock-filesystem/playwright.config.js
2026-05-12 19:40:31 +09:00

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'),
});