jitsi-meet/tests/wdio.dev.conf.ts
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

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 });