mirror of
https://github.com/appium/appium.git
synced 2026-02-20 18:30:11 -06:00
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.
70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
|
"name": "@appium/driver-test-support",
|
|
"version": "0.3.7",
|
|
"description": "Test utilities for Appium drivers",
|
|
"keywords": [
|
|
"automation",
|
|
"javascript",
|
|
"selenium",
|
|
"webdriver",
|
|
"ios",
|
|
"android",
|
|
"firefoxos",
|
|
"testing"
|
|
],
|
|
"homepage": "https://appium.io",
|
|
"bugs": {
|
|
"url": "https://github.com/appium/appium/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/appium/appium.git",
|
|
"directory": "packages/driver-test-support"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "https://github.com/appium",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib",
|
|
"build",
|
|
"tsconfig.json",
|
|
"!build/tsconfig.tsbuildinfo"
|
|
],
|
|
"scripts": {
|
|
"test": "npm run test:unit",
|
|
"test:smoke": "node ./index.js",
|
|
"test:unit": "mocha \"test/unit/**/*.spec.js\""
|
|
},
|
|
"types": "./build/lib/index.d.ts",
|
|
"dependencies": {
|
|
"@appium/types": "^0.9.1",
|
|
"@types/lodash": "4.14.191",
|
|
"@types/stoppable": "1.1.1",
|
|
"axios": "1.3.3",
|
|
"bluebird": "3.7.2",
|
|
"chai": "4.3.7",
|
|
"get-port": "5.1.1",
|
|
"lodash": "4.17.21",
|
|
"sinon": "15.0.1",
|
|
"source-map-support": "0.5.21",
|
|
"stoppable": "1.1.0",
|
|
"type-fest": "3.5.7"
|
|
},
|
|
"peerDependencies": {
|
|
"appium": "^2.0.0-beta.43",
|
|
"mocha": "*"
|
|
},
|
|
"engines": {
|
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
"npm": ">=8"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHead": "84b211330dc84849af9cc1f3a5c5ad32e15b2e72"
|
|
}
|