(status: string, details?: unknown)
| 16 | const resultsDatabaseName = `tanstack_db_capacitor_e2e_results_${runtimeRunId}` |
| 17 | |
| 18 | function setStatus(status: string, details?: unknown): void { |
| 19 | statusElement.textContent = status |
| 20 | if (details !== undefined) { |
| 21 | detailsElement.textContent = JSON.stringify(details, null, 2) |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | async function persistRunResult( |
| 26 | sqlite: SQLiteConnection, |