mirror of
https://github.com/appium/appium.git
synced 2026-04-24 04:18:49 -05:00
893bd888cf
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.
16 lines
392 B
JSON
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"}]
|
|
}
|