mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-21 16:52:13 +00:00
13 lines
205 B
JavaScript
13 lines
205 B
JavaScript
/** @type {import('@playwright/test').PlaywrightTestConfig} */
|
|
const config = {
|
|
webServer: {
|
|
command: 'npm run build && npm run preview',
|
|
port: 4173
|
|
},
|
|
testDir: 'tests'
|
|
};
|
|
|
|
export default config;
|
|
|
|
|