WithDumpOnFailure will dump the entire database on test failure.
()
| 43 | |
| 44 | // WithDumpOnFailure will dump the entire database on test failure. |
| 45 | func WithDumpOnFailure() Option { |
| 46 | return func(o *options) { |
| 47 | o.dumpOnFailure = true |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func WithLogger(logger slog.Logger) Option { |
| 52 | return func(o *options) { |
no outgoing calls