Files
HKSingleParty/99_references/cf-identity-wallet-main/tests/config/wdio.appium.config.ts
2025-05-28 09:55:51 +08:00

30 lines
884 B
TypeScript

import {config as sharedConfig} from "./wdio.config.js";
export const config = {
...sharedConfig,
...{
host: "0.0.0.0",
port: 4723,
services: [
[
"appium",
{
// For options see
// https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-appium-service
args: {
// For arguments see
// https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-appium-service
// This is needed to tell Appium that we can execute local ADB commands
// and to automatically download the latest version of ChromeDriver
relaxedSecurity: true,
allowInsecure: ["chromedriver_autodownload"],
log: "./tests/.appium/appium.log",
logLevel: "info",
},
command: "appium",
},
],
],
},
};