()
| 338 | { source: 'A', target: 'B', kind: 'calls', line: 200, column: 4 }, |
| 339 | ]); |
| 340 | const count = () => (raw.prepare('SELECT count(*) AS c FROM edges').get() as { c: number }).c; |
| 341 | expect(count()).toBe(3); // duplicate admitted while the index was absent |
| 342 | |
| 343 | runMigrations(raw, 5); |
no test coverage detected