state/playwright.debug.config.js

10 lines
186 B
JavaScript
Raw Normal View History

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './test',
testMatch: '**/*.spec.js',
use: {
baseURL: 'http://localhost:8086',
},
});