Files
appium/packages/driver-test-support/tsconfig.json
T
Christopher Hiller 893bd888cf feat(driver-test-support): add startStoppableAppium()
This adds a function `startStoppableAppium()` which starts an Appium server (via its `main()` entry point), but resolves with an object having a `stop() => Promise<boolean>` method. This method force-quits the server, even if there are active connections.
2023-02-17 11:02:44 -08:00

16 lines
392 B
JSON

{
"extends": "@appium/tsconfig/tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build",
"checkJs": true,
"paths": {
"@appium/types": ["../types"],
"appium/driver": ["../base-driver"]
},
"types": ["mocha", "chai", "chai-as-promised"]
},
"include": ["lib", "test"],
"references": [{"path": "../types"}, {"path": "../base-driver"}]
}