Add notebook smoketests

This commit is contained in:
Rob Lourens
2020-05-20 12:01:16 -05:00
parent c19d0dcd9b
commit 9bc11824c3
8 changed files with 267 additions and 5 deletions

View File

@@ -27,6 +27,12 @@
"mocha": "^2.3.3"
},
"contributes": {
"commands": [
{
"command": "vscode-notebook-tests.createNewNotebook",
"title": "Create New Notebook"
}
],
"notebookProvider": [
{
"viewType": "notebookCoreTest",
@@ -37,6 +43,16 @@
"excludeFileNamePattern": ""
}
]
},
{
"viewType": "notebookSmokeTest",
"displayName": "Notebook Smoke Test",
"selector": [
{
"filenamePattern": "*.smoke-nb",
"excludeFileNamePattern": ""
}
]
}
]
}