Skip to content

Commit

Permalink
re-enable exemplar smoketest, expected to fail until log collection i…
Browse files Browse the repository at this point in the history
…s in
  • Loading branch information
safeer committed Oct 10, 2024
1 parent 0dfcc93 commit 78308f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smoketest/smoketest_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
in "github.com/TBD54566975/ftl/internal/integration"
)

func TestJecho(t *testing.T) {
func DisabledTestJecho(t *testing.T) {
skipKubeFullDeploy := os.Getenv("SKIP_KUBE_FULL_DEPLOY") == "true"
fmt.Println("skipKubeFullDeploy:", skipKubeFullDeploy)
in.Run(t,
Expand All @@ -27,14 +27,14 @@ func TestJecho(t *testing.T) {
in.CopyModule("jecho"),
in.Deploy("jecho"),
in.Call("jecho", "echo", "Joe", func(t testing.TB, response string) {
expected := fmt.Sprintf("Hello, %s!!!", "Joe")
expected := fmt.Sprintf("Hello, %s!", "Joe")
assert.Equal(t, expected, response)
}),
in.Exec("ftl", "--version"),
)
}

func DisabledTestExemplar(t *testing.T) {
func TestExemplar(t *testing.T) {
tmpDir := t.TempDir()
logFilePath := filepath.Join(tmpDir, "smoketest.log")

Expand Down

0 comments on commit 78308f9

Please sign in to comment.