(input: { readonly path: string; readonly marker: string })
| 881 | }; |
| 882 | |
| 883 | const assertWalMarkerRows = async (input: { readonly path: string; readonly marker: string }) => { |
| 884 | expect(existsSync(input.path)).toBe(true); |
| 885 | const client = await openLocalLibsql(input.path); |
| 886 | const markers = await client.execute("SELECT id FROM wal_marker"); |
| 887 | client.close(); |
| 888 | expect(markers.rows).toEqual([{ id: input.marker }]); |
| 889 | }; |
| 890 | |
| 891 | type MigrationJournalForTestValue = ReturnType<typeof readMigrationJournalForTest>; |
| 892 |
no test coverage detected