mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
|
|
// wdio.dev.conf.ts
|
||
|
|
// extends te main configuration file for the development environment (make dev)
|
||
|
|
// it will connect to the webpack-dev-server running locally on port 8080
|
||
|
|
import { deepmerge } from 'deepmerge-ts';
|
||
|
|
|
||
|
|
// @ts-ignore
|
||
|
|
import { config as defaultConfig } from './wdio.conf.ts';
|
||
|
|
|
||
|
|
export const config = deepmerge(defaultConfig, {
|
||
|
|
baseUrl: 'https://127.0.0.1:8080/torture'
|
||
|
|
}, { clone: false });
|