banana_split/playwright.config.ts
Pavel Rybalko cbdfc7e08b
add end-to-end UI tests. Resolves #30
* add 2e2 tests

* fix prettier

* add workflow

* prettify

* update vue/cli-service

* update readme
2021-11-17 11:21:00 +07:00

14 lines
313 B
TypeScript

import { PlaywrightTestConfig } from "@playwright/test";
const config: PlaywrightTestConfig = {
webServer: {
command: "NODE_ENV=test npm run serve -- --port 8888",
port: 8888,
reuseExistingServer: false
},
testDir: "tests/e2e",
use: {
browserName: "chromium"
}
};
export default config;