File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 13
13
14
14
- Don't start debugging XCTest cases if the swift-testing debug session was stopped ([ #1797 ] ( https://github.com/swiftlang/vscode-swift/pull/1797 ) )
15
15
- Improve error handling when the swift path is misconfigured ([ #1801 ] ( https://github.com/swiftlang/vscode-swift/pull/1801 ) )
16
+ - Fix an error when performing "Run/Debug Tests Multiple Times" on Linux ([ #1824 ] ( https://github.com/swiftlang/vscode-swift/pull/1824 ) )
16
17
17
18
## 2.11.20250806 - 2025-08-06
18
19
Original file line number Diff line number Diff line change @@ -128,7 +128,10 @@ export function extractTestItemsAndCount(
128
128
result . count = arg ?? undefined ;
129
129
return result ;
130
130
} else if ( typeof arg === "object" ) {
131
- if ( arg . hasOwnProperty ( "id" ) && arg . hasOwnProperty ( "uri" ) ) {
131
+ if (
132
+ Object . prototype . hasOwnProperty . call ( arg , "id" ) &&
133
+ Object . prototype . hasOwnProperty . call ( arg , "uri" )
134
+ ) {
132
135
result . testItems . push ( arg ) ;
133
136
}
134
137
return result ;
You can’t perform that action at this time.
0 commit comments