(db: AbstractPowerSyncDatabase)
| 72 | } |
| 73 | |
| 74 | async function createTestData(db: AbstractPowerSyncDatabase) { |
| 75 | await db.execute(` |
| 76 | INSERT into documents (id, name) |
| 77 | VALUES |
| 78 | (uuid(), 'one'), |
| 79 | (uuid(), 'two'), |
| 80 | (uuid(), 'three') |
| 81 | `) |
| 82 | } |
| 83 | |
| 84 | describe(`sync`, () => { |
| 85 | it(`should initialize and fetch initial data`, async () => { |
no test coverage detected
searching dependent graphs…