Skip to content

Commit 732c825

Browse files
committed
ci: fix env varable read
1 parent 8aeeea2 commit 732c825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/runner.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ if (isLocal) {
8989
'If you are a maintainer, make sure to create your `.env` file with both `BS_USER` and `BS_KEY` variables!'
9090
)
9191
// fail if testing locally
92-
process.exit(process.env.isCI ? 0 : 1)
92+
process.exit(process.env.CI ? 0 : 1)
9393
}
9494

9595
let bsLocal

0 commit comments

Comments
 (0)