File tree Expand file tree Collapse file tree 1 file changed +18
-18
lines changed
src/test/terminals/codeExecution Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Original file line number Diff line number Diff 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+ } ) ;
You can’t perform that action at this time.
0 commit comments