Skip to content

Commit

Permalink
chore(shellspec): silent output of helper commands
Browse files Browse the repository at this point in the history
  • Loading branch information
JackuB committed Oct 1, 2020
1 parent e8c0d55 commit 014e21a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/smoke/spec/spec_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ print_snyk_config() {
}

snyk_login() {
snyk auth "${SMOKE_TESTS_SNYK_TOKEN}"
snyk auth "${SMOKE_TESTS_SNYK_TOKEN}" > /dev/null 2>&1
}

snyk_logout() {
snyk config clear
snyk config clear > /dev/null 2>&1
}

verify_login_url() {
Expand Down

0 comments on commit 014e21a

Please sign in to comment.