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";
1818import * as os from "os" ;
1919import * as asyncfs from "fs/promises" ;
2020import { 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" ;
2822import { createSwiftTask } from "../tasks/SwiftTaskProvider" ;
2923import configuration from "../configuration" ;
3024import { WorkspaceContext } from "../WorkspaceContext" ;
@@ -245,11 +239,6 @@ export class TestRunProxy {
245239 }
246240
247241 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-
253242 this . runState . enqueued = this . runState . enqueued . filter ( t => t !== test ) ;
254243
255244 if ( ! test . parent ) {
You can’t perform that action at this time.
0 commit comments