Add Dashboards (#41)

This commit is contained in:
Jonas Plum
2022-03-14 00:23:29 +01:00
committed by GitHub
parent 18a4dc54e7
commit 02c7da91da
30 changed files with 2824 additions and 279 deletions

View File

@@ -84,7 +84,7 @@ func Index(t *testing.T) (*index.Index, func(), error) {
if err != nil {
return nil, nil, err
}
return catalystIndex, func() { os.RemoveAll(dir) }, nil
return catalystIndex, func() { catalystIndex.Close(); os.RemoveAll(dir) }, nil
}
func Bus(t *testing.T) (context.Context, *catalyst.Config, *bus.Bus, error) {