mirror of
https://github.com/paritytech/banana_split.git
synced 2026-09-12 11:40:31 +05:00
* add 2e2 tests * fix prettier * add workflow * prettify * update vue/cli-service * update readme
14 lines
313 B
TypeScript
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;
|