We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae127af commit 6f341e1Copy full SHA for 6f341e1
packages/compass-e2e-tests/smoke-test.ts
@@ -37,7 +37,8 @@ const argv = yargs(hideBin(process.argv))
37
// For dev versions we need this from evergreen. For beta or stable (or by
38
// default, ie. when testing a locally packaged app) we get it from the
39
// package.json
40
- default: process.env.DEV_VERSION_IDENTIFIER,
+ // NOTE: DEV_VERSION_IDENTIFIER might be a blank string which would be invalid
41
+ default: process.env.DEV_VERSION_IDENTIFIER || undefined,
42
description:
43
'Will be read from packages/compass/package.json if not specified',
44
})
0 commit comments