feat(cli): add tests for password, hashed-password

This commit is contained in:
Joe Previte 2021-10-04 14:51:14 -07:00
parent 8a4ed5a2e0
commit e588f8b0b0
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 2 additions and 0 deletions

View File

@ -310,10 +310,12 @@ export const parse = (
throw error(`Unknown option ${arg}`)
}
// TODO@jsjoeio add test for this if block
if (key === "password" && !opts?.configFile) {
throw new Error("--password can only be set in the config file or passed in via $PASSWORD")
}
// TODO@jsjoeio add test for this if block
if (key === "hashed-password" && !opts?.configFile) {
throw new Error("--hashed-password can only be set in the config file or passed in via $HASHED_PASSWORD")
}