(t testing.TB, tmpDir string)
| 637 | } |
| 638 | |
| 639 | func defaultLiveStore(t testing.TB, tmpDir string) (*LiveStore, error) { |
| 640 | cfg := defaultConfig(t, tmpDir) |
| 641 | return liveStoreWithConfig(t, cfg) |
| 642 | } |
| 643 | |
| 644 | func liveStoreWithConfig(t testing.TB, cfg Config) (*LiveStore, error) { |
| 645 | // Create overrides |
no test coverage detected