mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
skip flaky notebook tests (#173124)
* skip flaky notebook test * link to issue * skipe the suite
This commit is contained in:
@@ -7,7 +7,7 @@ import * as assert from 'assert';
|
||||
import * as vscode from 'vscode';
|
||||
import * as utils from '../utils';
|
||||
|
||||
(vscode.env.uiKind === vscode.UIKind.Web ? suite.skip : suite)('Notebook Editor', function () {
|
||||
(vscode.env.uiKind === vscode.UIKind.Web ? suite.skip : suite.skip)('Notebook Editor', function () {
|
||||
|
||||
const contentSerializer = new class implements vscode.NotebookSerializer {
|
||||
deserializeNotebook() {
|
||||
@@ -66,7 +66,7 @@ import * as utils from '../utils';
|
||||
});
|
||||
|
||||
// #138683
|
||||
// TODO https://github.com/microsoft/vscode/issues/170072
|
||||
// TODO@rebornix https://github.com/microsoft/vscode/issues/170072
|
||||
test.skip('Opening a notebook should fire activeNotebook event changed only once', utils.withVerboseLogs(async function () {
|
||||
const openedEditor = onDidOpenNotebookEditor();
|
||||
const resource = await utils.createRandomFile(undefined, undefined, '.nbdtest');
|
||||
@@ -76,7 +76,8 @@ import * as utils from '../utils';
|
||||
assert.strictEqual(editor.notebook.uri.toString(), resource.toString());
|
||||
}));
|
||||
|
||||
test('Active/Visible Editor', async function () {
|
||||
// TODO@rebornix https://github.com/microsoft/vscode/issues/173125
|
||||
test.skip('Active/Visible Editor', async function () {
|
||||
const firstEditorOpen = onDidOpenNotebookEditor();
|
||||
const resource = await utils.createRandomFile(undefined, undefined, '.nbdtest');
|
||||
const document = await vscode.workspace.openNotebookDocument(resource);
|
||||
|
||||
Reference in New Issue
Block a user