mark test as unstable (#14284)

This commit is contained in:
Barbara Valdez
2021-02-12 16:44:07 -08:00
committed by GitHub
parent 6a09d8387e
commit 612c385725

View File

@@ -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();