(db: FakeSqlStorage)
| 176 | ) |
| 177 | |
| 178 | const hasForbiddenTransactionSql = (db: FakeSqlStorage) => |
| 179 | db.statements.some((statement) => /^(BEGIN|COMMIT|ROLLBACK|SAVEPOINT)\b/i.test(normalizeSql(statement))) |
| 180 | |
| 181 | describe("Client", () => { |
| 182 | it.effect("classifies native errors without stable sqlite codes as UnknownError", () => |
no test coverage detected