(db: DatabaseConnection)
| 17 | artifactId = "__test__"; |
| 18 | |
| 19 | private static async _createTables(db: DatabaseConnection) { |
| 20 | await db.exec(`CREATE TABLE IF NOT EXISTS test_index ( |
| 21 | id INTEGER PRIMARY KEY, |
| 22 | path TEXT NOT NULL, |
| 23 | branch TEXT NOT NULL, |
| 24 | directory TEXT NOT NULL |
| 25 | )`); |
| 26 | } |
| 27 | |
| 28 | async *update( |
| 29 | tag: IndexTag, |
no outgoing calls
no test coverage detected