From 8f032b536c3ff13b28ce355ca7ddba170ce42552 Mon Sep 17 00:00:00 2001 From: rebornix Date: Wed, 22 Jul 2020 09:32:54 -0700 Subject: [PATCH] :lipstick: --- extensions/vscode-notebook-tests/src/notebook.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/vscode-notebook-tests/src/notebook.test.ts b/extensions/vscode-notebook-tests/src/notebook.test.ts index ad9e518c74f..28a58259702 100644 --- a/extensions/vscode-notebook-tests/src/notebook.test.ts +++ b/extensions/vscode-notebook-tests/src/notebook.test.ts @@ -87,9 +87,9 @@ async function saveAllFilesAndCloseAll(resource: vscode.Uri) { function assertInitalState() { // no-op unless we figure out why some documents are opened after the editor is closed - // assert.equal(vscode.notebook.activeNotebookEditor, undefined); - // assert(vscode.notebook.notebookDocuments.length, 0); - // assert.equal(vscode.notebook.visibleNotebookEditors.length, 0); + assert.equal(vscode.notebook.activeNotebookEditor, undefined); + assert.equal(vscode.notebook.notebookDocuments.length, 0); + assert.equal(vscode.notebook.visibleNotebookEditors.length, 0); } suite('Notebook API tests', () => {