move file'ish things into workspace namespace

This commit is contained in:
Johannes Rieken
2021-06-02 09:43:07 +02:00
parent 0b6e70302f
commit ac05ae7b6f
8 changed files with 121 additions and 127 deletions

View File

@@ -90,13 +90,13 @@ suite('vscode', function () {
});
test('no rpc, createNotebookEditorDecorationType(...)', function () {
const item = vscode.notebook.createNotebookEditorDecorationType({ top: {} });
const item = vscode.notebooks.createNotebookEditorDecorationType({ top: {} });
dispo.push(item);
assertNoRpcFromEntry([item, 'NotebookEditorDecorationType']);
});
test('no rpc, createNotebookController(...)', function () {
const ctrl = vscode.notebook.createNotebookController('foo', 'bar', '');
const ctrl = vscode.notebooks.createNotebookController('foo', 'bar', '');
dispo.push(ctrl);
assertNoRpcFromEntry([ctrl, 'NotebookController']);
});