Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
kadel committed May 21, 2020
1 parent 3525cd9 commit 8e09b0b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/integration/devfile/cmd_devfile_url_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ import (

var _ = Describe("odo devfile url command tests", func() {
var namespace, context, componentName, currentWorkingDirectory string
var cliRunner helper.CliRunner

// Using program commmand according to cliRunner in devfile
if os.Getenv("KUBERNETES") == "true" {
cliRunner = helper.NewKubectlRunner("kubectl")
} else {
cliRunner = helper.NewOcRunner("oc")
}

// This is run after every Spec (It)
var _ = BeforeEach(func() {
Expand Down

0 comments on commit 8e09b0b

Please sign in to comment.