Skip to content

Commit

Permalink
ci: fix env varable read
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Jun 10, 2019
1 parent 8aeeea2 commit 732c825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ if (isLocal) {
'If you are a maintainer, make sure to create your `.env` file with both `BS_USER` and `BS_KEY` variables!'
)
// fail if testing locally
process.exit(process.env.isCI ? 0 : 1)
process.exit(process.env.CI ? 0 : 1)
}

let bsLocal
Expand Down

0 comments on commit 732c825

Please sign in to comment.