We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17224a1 commit b827439Copy full SHA for b827439
Tests/AppTests/Helpers/DatabasePool.swift
@@ -40,6 +40,8 @@ actor DatabasePool {
40
var availableDatabases: Set<Database> = .init()
41
42
func setUp() async throws {
43
+ print("ℹ️ DatabasePool size:", Environment.databasePoolSize)
44
+
45
// Call DotEnvFile.load once to ensure env variables are set
46
await DotEnvFile.load(for: .testing, fileio: .init(threadPool: .singleton))
47
@@ -79,6 +81,8 @@ actor DatabasePool {
79
81
}
80
82
83
func tearDown() async throws {
84
85
86
if isRunningInCI() {
87
// Let CI's tear down deal with the databases, there's nothing we can or should do here.
88
} else {
0 commit comments