()
| 50 | } |
| 51 | |
| 52 | async function createDatabase() { |
| 53 | const app = new AppFactory().create(new URL('./', import.meta.url), () => {}) |
| 54 | await app.init() |
| 55 | |
| 56 | return new Database(dbConfig, new LoggerFactory().create(), new EmitterFactory().create(app)) |
| 57 | } |
| 58 | |
| 59 | test.group('Database store', (group) => { |
| 60 | let db: Database |
no test coverage detected