Notebooks: Adding Change Kernel API, 3 Integration Tests (#5287)

* Notebook change kernel

* Fix notifying of k change too many times add tests

* Fix broken unit test

* Deal with comment
This commit is contained in:
Chris LaFreniere
2019-06-03 14:49:40 -07:00
committed by GitHub
parent 4b6214c9a4
commit 8d70544374
10 changed files with 130 additions and 17 deletions

View File

@@ -4363,6 +4363,11 @@ declare module 'azdata' {
* @return A promise that resolves with a value indicating if the outputs are cleared or not.
*/
clearAllOutputs(): Thenable<boolean>;
/**
* Changes the Notebook's kernel. Thenable will resolve only after kernel change is complete.
*/
changeKernel(kernel: IKernelSpec): Thenable<boolean>;
}
export interface NotebookCell {