()
| 8 | }; |
| 9 | |
| 10 | function getTestDatabaseClients(): Set<TestDatabaseClient> { |
| 11 | const testGlobal = globalThis as TestDatabaseGlobal; |
| 12 | return (testGlobal[TEST_DATABASE_CLIENTS_KEY] ??= new Set<TestDatabaseClient>()); |
| 13 | } |
| 14 | |
| 15 | function enqueueTestDatabaseOperation<T>(operation: () => Promise<T> | T): Promise<T> { |
| 16 | const testGlobal = globalThis as TestDatabaseGlobal; |
no outgoing calls
no test coverage detected
searching dependent graphs…