()
| 85 | } |
| 86 | |
| 87 | function makeDb(): Database { |
| 88 | const db = new Database(":memory:"); |
| 89 | initializeDatabase(db); |
| 90 | runMigrations(db); |
| 91 | dbs.push(db); |
| 92 | return db; |
| 93 | } |
| 94 | |
| 95 | function insertMemory(database: Database, projectPath: string, normalizedHash: string): number { |
| 96 | const result = database |
no test coverage detected