Files
jitsi-meet/tests/wdio.dev.conf.ts
luzpaz 30595584a3 chore(typos) fix various typos
Found via `codespell -q 3 -S "*.svg,./lang" -L anser,bu,dialin,goup,miliseconds,nd,vew`
2024-12-20 07:58:31 +01:00

12 lines
409 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 { 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 });