From e588f8b0b0d868ea08a7e0222b024981393113c4 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 4 Oct 2021 14:51:14 -0700 Subject: [PATCH] feat(cli): add tests for password, hashed-password --- src/node/cli.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/node/cli.ts b/src/node/cli.ts index fe9b3fc1..b3f4a820 100644 --- a/src/node/cli.ts +++ b/src/node/cli.ts @@ -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") }