1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-23 19:00:13 +02:00
comprehensive-rust/tests/wdio.conf-mdbook.ts
2025-02-28 14:27:17 +00:00

15 lines
373 B
TypeScript

import { deepmerge } from "deepmerge-ts";
import { config as default_config } from "./wdio.conf.js";
// have main config file as default but overwrite how the code is served
export const config = deepmerge(
default_config,
{
// use the mdbook served content
baseUrl: "http://localhost:3000",
// clean services
services: [],
},
{ clone: false },
);