ipld-eth-beacon-indexer/internal/boot/boot_suite_test.go
Abdul Rabbani 3d46a029f1
Feature/11 testing add tests for boot (#12)
* Utilize Versioning

* Update Testing and CI/CD

* Update Testing

* Add Linting and Remove timeout

* Update Lint

* handle errors to make the linter happy
2022-04-22 12:27:54 -04:00

14 lines
188 B
Go

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