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