From 612c3857253c26fb18ccddd3bfe55234458265ec Mon Sep 17 00:00:00 2001 From: Barbara Valdez <34872381+barbaravaldez@users.noreply.github.com> Date: Fri, 12 Feb 2021 16:44:07 -0800 Subject: [PATCH] mark test as unstable (#14284) --- extensions/notebook/src/test/book/book.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/notebook/src/test/book/book.test.ts b/extensions/notebook/src/test/book/book.test.ts index 7bbecf8919..2dec3b011a 100644 --- a/extensions/notebook/src/test/book/book.test.ts +++ b/extensions/notebook/src/test/book/book.test.ts @@ -752,7 +752,7 @@ describe('BooksTreeViewTests', function () { should(showNotebookSpy.calledWith(vscode.Uri.file(notebookPath))).be.true(`Should have opened the notebook from ${notebookPath} in the editor.`); }); - it('openNotebookAsUntitled should open a notebook as untitled file in the editor', async () => { + it('openNotebookAsUntitled should open a notebook as untitled file in the editor @UNSTABLE@', async () => { let notebookPath = run.folderPaths.notebook2File; await bookTreeViewProvider.openNotebookAsUntitled(notebookPath); should(azdata.nb.notebookDocuments.find(doc => doc.uri.scheme === 'untitled')).not.be.undefined();