Files
odo/tests/interactive/interactive_suit_test.go
Anand Kumar Singh 098389b027 update go version to use go 1.17 (#5497)
* update go version to 1.17

Signed-off-by: anandrkskd <anandrkskd@gmail.com>

* update go version to 1.17 and fix failure

Signed-off-by: anandrkskd <anandrkskd@gmail.com>
2022-04-29 12:20:35 -04:00

16 lines
352 B
Go

//go:build !race && (linux || darwin || dragonfly || solaris || openbsd || netbsd || freebsd)
// +build !race
// +build linux darwin dragonfly solaris openbsd netbsd freebsd
package interactive
import (
"testing"
"github.com/redhat-developer/odo/tests/helper"
)
func TestInteractive(t *testing.T) {
helper.RunTestSpecs(t, "Interactive Suite")
}