(config: SqliteClient.SqliteClientConfig)
| 170 | } |
| 171 | |
| 172 | const makeClient = (config: SqliteClient.SqliteClientConfig) => |
| 173 | SqliteClient.make(config).pipe( |
| 174 | Effect.scoped, |
| 175 | Effect.provide(Reactivity.layer) |
| 176 | ) |
| 177 | |
| 178 | const hasForbiddenTransactionSql = (db: FakeSqlStorage) => |
| 179 | db.statements.some((statement) => /^(BEGIN|COMMIT|ROLLBACK|SAVEPOINT)\b/i.test(normalizeSql(statement))) |
no test coverage detected
searching dependent graphs…