File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,7 @@ import * as stream from "stream";
18
18
import * as os from "os" ;
19
19
import * as asyncfs from "fs/promises" ;
20
20
import { FolderContext } from "../FolderContext" ;
21
- import {
22
- compactMap ,
23
- execFile ,
24
- getErrorDescription ,
25
- IS_PRODUCTION_BUILD ,
26
- IS_RUNNING_UNDER_TEST ,
27
- } from "../utilities/utilities" ;
21
+ import { compactMap , execFile , getErrorDescription } from "../utilities/utilities" ;
28
22
import { createSwiftTask } from "../tasks/SwiftTaskProvider" ;
29
23
import configuration from "../configuration" ;
30
24
import { WorkspaceContext } from "../WorkspaceContext" ;
@@ -245,11 +239,6 @@ export class TestRunProxy {
245
239
}
246
240
247
241
private clearEnqueuedTest ( test : vscode . TestItem ) {
248
- if ( IS_PRODUCTION_BUILD && ! IS_RUNNING_UNDER_TEST ) {
249
- // `runState.enqueued` exists only for test validation purposes.
250
- return ;
251
- }
252
-
253
242
this . runState . enqueued = this . runState . enqueued . filter ( t => t !== test ) ;
254
243
255
244
if ( ! test . parent ) {
You can’t perform that action at this time.
0 commit comments