We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd70388 commit 8f032b5Copy full SHA for 8f032b5
1 file changed
extensions/vscode-notebook-tests/src/notebook.test.ts
@@ -87,9 +87,9 @@ async function saveAllFilesAndCloseAll(resource: vscode.Uri) {
87
function assertInitalState() {
88
// no-op unless we figure out why some documents are opened after the editor is closed
89
90
- // assert.equal(vscode.notebook.activeNotebookEditor, undefined);
91
- // assert(vscode.notebook.notebookDocuments.length, 0);
92
- // 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);
93
}
94
95
suite('Notebook API tests', () => {
0 commit comments