File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ export class TestingDebugConfigurationFactory {
128
128
if ( isDebugging ( this . testKind ) && this . testLibrary === TestLibrary . xctest ) {
129
129
return {
130
130
...this . baseConfig ,
131
- program : this . xcTestOutputPath ,
132
- args : this . testList ,
131
+ program : this . testExecutableOutputPath ,
132
+ args : this . debuggingTestExecutableArgs ,
133
133
env : {
134
134
...swiftRuntimeEnv ( ) ,
135
135
...configuration . folder ( this . ctx . workspaceFolder ) . testEnvironmentVariables ,
@@ -419,7 +419,7 @@ export class TestingDebugConfigurationFactory {
419
419
this . addTestsToArgs ( this . addSwiftTestingFlagsArgs ( [ ] ) )
420
420
) ;
421
421
case TestLibrary . xctest :
422
- return this . testList ;
422
+ return [ this . testList . join ( "," ) ] ;
423
423
}
424
424
}
425
425
You can’t perform that action at this time.
0 commit comments