Benjamin Pasero
2021-12-31 08:14:39 +01:00
parent 108a8d5925
commit 0f265a3651
2 changed files with 2 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ suite('Notebook Editor', function () {
assert.strictEqual(vscode.window.visibleNotebookEditors.length, 2);
});
test('Notebook Editor Event - onDidChangeVisibleNotebookEditors on open/close', async function () {
test.skip('Notebook Editor Event - onDidChangeVisibleNotebookEditors on open/close', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/139958
const openedEditor = utils.asPromise(vscode.window.onDidChangeVisibleNotebookEditors);
const resource = await utils.createRandomFile(undefined, undefined, '.nbdtest');
await vscode.window.showNotebookDocument(resource);

View File

@@ -242,7 +242,7 @@ suite('vscode API - webview', () => {
});
test('webviews should only be able to load resources from workspace by default', async () => {
test.skip('webviews should only be able to load resources from workspace by default', async () => { // TODO@mjbvz https://github.com/microsoft/vscode/issues/139960
const webview = _register(vscode.window.createWebviewPanel(webviewId, 'title', {
viewColumn: vscode.ViewColumn.One
}, {