Skip to content

Commit 5698772

Browse files
committed
linting
1 parent 097da2d commit 5698772

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

src/test/terminals/codeExecution/terminalReplWatcher.unit.test.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ suite('Terminal REPL Watcher', () => {
1818
windowApisStub = sinon.stub(windowApis, 'onDidStartTerminalShellExecution').returns({
1919
dispose: () => {
2020
// Do nothing
21-
}
21+
},
2222
});
2323
telemetryStub = sinon.stub(telemetryModule, 'sendTelemetryEvent');
2424
});
@@ -33,14 +33,14 @@ suite('Terminal REPL Watcher', () => {
3333
execution: {
3434
commandLine: {
3535
value: 'python script.py',
36-
isTrusted: true
37-
}
38-
}
36+
isTrusted: true,
37+
},
38+
},
3939
});
4040
return {
4141
dispose: () => {
4242
// Do nothing
43-
}
43+
},
4444
};
4545
});
4646

@@ -57,14 +57,14 @@ suite('Terminal REPL Watcher', () => {
5757
execution: {
5858
commandLine: {
5959
value: 'python -m pytest',
60-
isTrusted: true
61-
}
62-
}
60+
isTrusted: true,
61+
},
62+
},
6363
});
6464
return {
6565
dispose: () => {
6666
// Do nothing
67-
}
67+
},
6868
};
6969
});
7070

@@ -80,14 +80,14 @@ suite('Terminal REPL Watcher', () => {
8080
execution: {
8181
commandLine: {
8282
value: 'python -m unittest discover',
83-
isTrusted: true
84-
}
85-
}
83+
isTrusted: true,
84+
},
85+
},
8686
});
8787
return {
8888
dispose: () => {
8989
// Do nothing
90-
}
90+
},
9191
};
9292
});
9393

@@ -103,14 +103,14 @@ suite('Terminal REPL Watcher', () => {
103103
execution: {
104104
commandLine: {
105105
value: 'py.test',
106-
isTrusted: true
107-
}
108-
}
106+
isTrusted: true,
107+
},
108+
},
109109
});
110110
return {
111111
dispose: () => {
112112
// Do nothing
113-
}
113+
},
114114
};
115115
});
116116

@@ -119,4 +119,4 @@ suite('Terminal REPL Watcher', () => {
119119
expect(telemetryStub.calledOnce).to.be.true;
120120
expect(telemetryStub.args[0][0]).to.equal(EventName.UNITTEST_RUN_CLI);
121121
});
122-
});
122+
});

0 commit comments

Comments
 (0)