robot: Add bundles test suite, fixup linting issues

This commit is contained in:
Ettore Di Giacinto 2022-08-18 15:19:15 +00:00 committed by Itxaka
parent 41f419fcd1
commit ee3c7f5775

View File

@ -0,0 +1,13 @@
package bundles_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestBundles(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Bundles Suite")
}