mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 15:55:59 +01:00
* fix: associate extHost lifecycle to window * fix: skip the smoke test in remote The reload scenario doesn't guarantee a proper cleanup of the remote server via the test-resolver extension. * fix: flaky condition * chore: disable extension setup in remote
30 lines
670 B
JSON
30 lines
670 B
JSON
{
|
|
"name": "vscode-smoketest-ext-host",
|
|
"displayName": "Smoke Test Extension Host",
|
|
"description": "Extension for smoke testing extension host lifecycle",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"engines": {
|
|
"vscode": "^1.55.0"
|
|
},
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"main": "./extension.js",
|
|
"extensionKind": ["ui"],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "smoketest.getExtensionHostPidAndBlock",
|
|
"title": "Smoke Test: Get Extension Host PID and Block"
|
|
},
|
|
{
|
|
"command": "smoketest.setupGracefulDeactivation",
|
|
"title": "Smoke Test: Setup Graceful Deactivation"
|
|
}
|
|
]
|
|
}
|
|
}
|