Fix notebook smoke test

Fix #102113
This commit is contained in:
Rob Lourens 2020-07-30 09:08:46 -07:00
parent 227d533937
commit 4bd3ba6f33

View file

@ -67,7 +67,7 @@ export function smokeTestActivate(context: vscode.ExtensionContext): any {
}
}));
context.subscriptions.push(vscode.notebook.registerNotebookKernel('notebookSmokeTest', ['*.vsctestnb'], {
context.subscriptions.push(vscode.notebook.registerNotebookKernel('notebookSmokeTest', ['*.smoke-nb'], {
label: 'notebookSmokeTest',
executeAllCells: async (_document: vscode.NotebookDocument) => {
for (let i = 0; i < _document.cells.length; i++) {