no test.only, fyi @bpasero

This commit is contained in:
Johannes Rieken
2021-11-01 15:14:36 +01:00
parent 8ec8e3285f
commit 13f383439f
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ suite.skip('Notebook Editor', function () {
assert.strictEqual(editor2.viewColumn, vscode.ViewColumn.Two);
});
test.skip('Opening a notebook should fire activeNotebook event changed only once', async function () {
test('Opening a notebook should fire activeNotebook event changed only once', async function () {
const openedEditor = utils.asPromise(vscode.window.onDidChangeActiveNotebookEditor);
const resource = await utils.createRandomFile(undefined, undefined, '.nbdtest');
const editor = await vscode.window.showNotebookDocument(resource);

View File

@@ -190,7 +190,7 @@ suite('vscode API - window', () => {
}
});
test.only('editor, opening multiple at the same time #134786', async () => {
test('editor, opening multiple at the same time #134786', async () => {
const fileA = await createRandomFile();
const fileB = await createRandomFile();
const fileC = await createRandomFile();