mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
15 lines
211 B
Go
15 lines
211 B
Go
//go:build !race
|
|
// +build !race
|
|
|
|
package interactive
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/redhat-developer/odo/tests/helper"
|
|
)
|
|
|
|
func TestInteractive(t *testing.T) {
|
|
helper.RunTestSpecs(t, "Interactive Suite")
|
|
}
|