mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
18 lines
391 B
Go
18 lines
391 B
Go
package tests_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"kubevirt.io/containerized-data-importer/tests"
|
|
"kubevirt.io/containerized-data-importer/tests/reporters"
|
|
)
|
|
|
|
func TestTests(t *testing.T) {
|
|
defer GinkgoRecover()
|
|
RegisterFailHandler(tests.CDIFailHandler)
|
|
RunSpecsWithDefaultAndCustomReporters(t, "Tests Suite", reporters.NewReporters())
|
|
}
|