We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21519b commit f8dfd52Copy full SHA for f8dfd52
1 file changed
src/test/extension.jupyter.comms.jupyterClient.test.ts
@@ -16,7 +16,7 @@ import { JupyterClient } from '../client/jupyter/jupyter_client/main';
16
// Defines a Mocha test suite to group tests of similar kind together
17
suite('JupyterClient', () => {
18
test('Ping (Process and Socket)', done => {
19
- const jupyter = new JupyterClient(vscode.window.createOutputChannel('Python'));
+ const jupyter = new JupyterClient(vscode.window.createOutputChannel('Python'), __dirname);
20
jupyter.start().then(() => {
21
done();
22
}).catch(reason => {
0 commit comments