Skip to content

Commit 3f0343b

Browse files
Ensure that async tests run all checks
1 parent 598c8b9 commit 3f0343b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

IntegrationTests/TestSuites/Sources/ConcurrencyTests/UnitTestUtils.swift

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ func test(_ name: String, testBlock: () throws -> Void) throws {
1515
print(error)
1616
throw error
1717
}
18+
print("\(name)")
1819
}
1920

2021
func asyncTest(_ name: String, testBlock: () async throws -> Void) async throws -> Void {
@@ -26,6 +27,7 @@ func asyncTest(_ name: String, testBlock: () async throws -> Void) async throws
2627
print(error)
2728
throw error
2829
}
30+
print("\(name)")
2931
}
3032

3133
struct MessageError: Error {

0 commit comments

Comments
 (0)