mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* feat(tests): Introduces BasePageObject. * fix(tests): Use wdio aria selector where possible. * fix(tests): Correct test exclusion for Firefox. * fix(tests): Rearrange code. * feat(tests): Adds breakout tests.
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 });
|