This commit is contained in:
rebornix 2020-07-22 09:32:54 -07:00
parent bd70388d46
commit 8f032b536c

View file

@ -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', () => {