Skip to content

Commit

Permalink
remove quit validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani authored and Pantani committed Apr 15, 2024
1 parent a16221f commit 8e99cdc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions explorer/integration/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,10 @@ func TestGexExplorer(t *testing.T) {
assertLocalPlugins(t, app, []pluginsconfig.Plugin{{Path: pluginPath}})
assertGlobalPlugins(t, nil)

var (
execErr = &bytes.Buffer{}
execResult = &bytes.Buffer{}
)
execErr := &bytes.Buffer{}
steps := step.NewSteps(
step.New(
step.Stderr(execErr),
step.Stdout(execResult),
step.Workdir(app.SourcePath()),
step.PreExec(func() error {
return env.IsAppServed(ctx, servers.API)
Expand All @@ -72,7 +68,6 @@ func TestGexExplorer(t *testing.T) {
wg.Wait()

require.Empty(execErr.String())
require.Equal("aborted\n", execResult.String())
}

func assertLocalPlugins(t *testing.T, app envtest.App, expectedPlugins []pluginsconfig.Plugin) {
Expand Down

0 comments on commit 8e99cdc

Please sign in to comment.