Skip to content

Commit

Permalink
add wait timer
Browse files Browse the repository at this point in the history
  • Loading branch information
atheeshp committed Feb 22, 2024
1 parent f69ee4b commit dd2200c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration/cli/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package cli

import (
"os/exec"
"time"

"cosmossdk.io/errors"
)
Expand All @@ -13,5 +14,7 @@ func Exec(args ...string) (string, error) {
return "", errors.Wrap(err, string(out))
}

time.Sleep(2 * time.Second)

return string(out), err
}

0 comments on commit dd2200c

Please sign in to comment.