3d46a029f1
* Utilize Versioning * Update Testing and CI/CD * Update Testing * Add Linting and Remove timeout * Update Lint * handle errors to make the linter happy
14 lines
188 B
Go
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")
|
|
}
|