re #93070. test for command arguments.

This commit is contained in:
rebornix
2020-07-13 10:52:52 -07:00
parent d17550f4a8
commit 5e96337121
4 changed files with 38 additions and 1 deletions

View File

@@ -31,6 +31,11 @@
{
"command": "vscode-notebook-tests.createNewNotebook",
"title": "Create New Notebook"
},
{
"command": "vscode-notebook-tests.debugAction",
"title": "Debug Notebook Test Cell Action",
"icon": "$(debug)"
}
],
"notebookProvider": [
@@ -63,6 +68,15 @@
"text/custom"
]
}
]
],
"menus": {
"notebook/cell/title": [
{
"command": "vscode-notebook-tests.debugAction",
"when": "notebookViewType == notebookSmokeTest",
"group": "inline@1"
}
]
}
}
}