(notebookEditor: NotebookEditor, timeout = defaultNotebookTestTimeout)
| 615 | : getActiveInterpreterKernelConnection(); |
| 616 | } |
| 617 | export function selectDefaultController(notebookEditor: NotebookEditor, timeout = defaultNotebookTestTimeout) { |
| 618 | return IS_REMOTE_NATIVE_TEST() || isWeb() |
| 619 | ? selectPythonRemoteKernelConnectionForActiveInterpreter(notebookEditor, timeout) |
| 620 | : selectActiveInterpreterController(notebookEditor, timeout); |
| 621 | } |
| 622 | async function selectActiveInterpreterController(notebookEditor: NotebookEditor, timeout = defaultNotebookTestTimeout) { |
| 623 | const { controllerRegistration, interpreterService } = await getServices(); |
| 624 |
no test coverage detected