containerized-data-importer/pkg/keys/keystore_suite_test.go
Alexander Wels a5a82aa970 Report import progress with prometheus
- Added code report progress with prometheus

Signed-off-by: Alexander Wels <awels@redhat.com>
2018-10-31 11:26:38 -04:00

16 lines
303 B
Go

package keys
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
"kubevirt.io/containerized-data-importer/tests/reporters"
)
func TestKeyStore(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecsWithDefaultAndCustomReporters(t, "Keystore Suite", reporters.NewReporters())
}