mirror of
https://github.com/appium/appium.git
synced 2026-04-24 04:18:49 -05:00
8b33414901
This is getting pretty close, but: - Commands from a driver will show even w/o a `newMethodMap` or `execMethodMap`; it is able to understand that it's overriding `BaseDriver` - It's also able to understand the associated routes - And it's able to understand the routes even if `BaseDriver` does not implement it Still working on the parameters display, but we have the name override working at least. Added some docstrings in `fake-driver`, `base-driver` for testing
28 lines
506 B
JSON
28 lines
506 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "dev",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
],
|
|
"label": "npm: dev",
|
|
"detail": "npm run dev",
|
|
"isBackground": true
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "typedoc",
|
|
"problemMatcher": [],
|
|
"label": "npm: typedoc",
|
|
"detail": "typedoc --logLevel Verbose",
|
|
"group": "build"
|
|
}
|
|
]
|
|
}
|