init commit,

This commit is contained in:
louiscklaw
2025-05-28 09:55:51 +08:00
commit efe70ceb69
8042 changed files with 951668 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
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",
},
],
],
},
};