Skip to content

Commit 77680ec

Browse files
authored
Skip maestro if SENTRY_AUTH_TOKEN is unavailable or empty (#4288)
1 parent 37ab937 commit 77680ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-packages/e2e-tests/cli.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ if (actions.includes('test')) {
231231
execFileSync('adb', ['install', '-r', '-d', testApp]);
232232
}
233233

234-
if (sentryAuthToken === undefined) {
235-
console.log('Skipping maestro test due to unavailable SENTRY_AUTH_TOKEN');
234+
if (!sentryAuthToken) {
235+
console.log('Skipping maestro test due to unavailable or empty SENTRY_AUTH_TOKEN');
236236
} else {
237237
execSync(
238238
`maestro test maestro \

0 commit comments

Comments
 (0)