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', () => {
18
18
windowApisStub = sinon . stub ( windowApis , 'onDidStartTerminalShellExecution' ) . returns ( {
19
19
dispose : ( ) => {
20
20
// Do nothing
21
- }
21
+ } ,
22
22
} ) ;
23
23
telemetryStub = sinon . stub ( telemetryModule , 'sendTelemetryEvent' ) ;
24
24
} ) ;
@@ -33,14 +33,14 @@ suite('Terminal REPL Watcher', () => {
33
33
execution : {
34
34
commandLine : {
35
35
value : 'python script.py' ,
36
- isTrusted : true
37
- }
38
- }
36
+ isTrusted : true ,
37
+ } ,
38
+ } ,
39
39
} ) ;
40
40
return {
41
41
dispose : ( ) => {
42
42
// Do nothing
43
- }
43
+ } ,
44
44
} ;
45
45
} ) ;
46
46
@@ -57,14 +57,14 @@ suite('Terminal REPL Watcher', () => {
57
57
execution : {
58
58
commandLine : {
59
59
value : 'python -m pytest' ,
60
- isTrusted : true
61
- }
62
- }
60
+ isTrusted : true ,
61
+ } ,
62
+ } ,
63
63
} ) ;
64
64
return {
65
65
dispose : ( ) => {
66
66
// Do nothing
67
- }
67
+ } ,
68
68
} ;
69
69
} ) ;
70
70
@@ -80,14 +80,14 @@ suite('Terminal REPL Watcher', () => {
80
80
execution : {
81
81
commandLine : {
82
82
value : 'python -m unittest discover' ,
83
- isTrusted : true
84
- }
85
- }
83
+ isTrusted : true ,
84
+ } ,
85
+ } ,
86
86
} ) ;
87
87
return {
88
88
dispose : ( ) => {
89
89
// Do nothing
90
- }
90
+ } ,
91
91
} ;
92
92
} ) ;
93
93
@@ -103,14 +103,14 @@ suite('Terminal REPL Watcher', () => {
103
103
execution : {
104
104
commandLine : {
105
105
value : 'py.test' ,
106
- isTrusted : true
107
- }
108
- }
106
+ isTrusted : true ,
107
+ } ,
108
+ } ,
109
109
} ) ;
110
110
return {
111
111
dispose : ( ) => {
112
112
// Do nothing
113
- }
113
+ } ,
114
114
} ;
115
115
} ) ;
116
116
@@ -119,4 +119,4 @@ suite('Terminal REPL Watcher', () => {
119
119
expect ( telemetryStub . calledOnce ) . to . be . true ;
120
120
expect ( telemetryStub . args [ 0 ] [ 0 ] ) . to . equal ( EventName . UNITTEST_RUN_CLI ) ;
121
121
} ) ;
122
- } ) ;
122
+ } ) ;
You can’t perform that action at this time.
0 commit comments