Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
12 lines
398 B
TypeScript
12 lines
398 B
TypeScript
// wdio.dev.conf.ts
|
|
// extends the main configuration file for the development environment (make dev)
|
|
// it will connect to the webpack-dev-server running locally on port 8080
|
|
import { merge } from 'lodash-es';
|
|
|
|
// @ts-ignore
|
|
import { config as defaultConfig } from './wdio.conf.ts';
|
|
|
|
export const config = merge(defaultConfig, {
|
|
baseUrl: 'https://127.0.0.1:8080/torture'
|
|
}, { clone: false });
|