Add a test

This commit is contained in:
Rich Chiodo
2022-05-23 17:25:00 -07:00
parent e2816721e1
commit 5d8bd23756
2 changed files with 67 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ async function openRandomNotebookDocument() {
return vscode.workspace.openNotebookDocument(uri);
}
async function saveAllFilesAndCloseAll() {
export async function saveAllFilesAndCloseAll() {
await saveAllEditors();
await closeAllEditors();
}
@@ -29,7 +29,7 @@ async function withEvent<T>(event: vscode.Event<T>, callback: (e: Promise<T>) =>
}
class Kernel {
export class Kernel {
readonly controller: vscode.NotebookController;