ipld-eth-beacon-indexer/pkg/beaconclient/beaconclient_suite_test.go
Abdul Rabbani 5b75f5a257 Create a single beaconclient pkg instead of having subpackages
The main reason to do this is so they can all access the `BeaconClient` Struct.
2022-04-25 11:32:46 -04:00

14 lines
210 B
Go

package beaconclient_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestHealthcheck(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Healthcheck Suite")
}