From e44d2e10a0b1adc379f15e3b265ade0f6fcf9c48 Mon Sep 17 00:00:00 2001 From: Richard Strand Date: Fri, 3 Jan 2025 17:38:21 +0000 Subject: [PATCH] Update NODE_ENV to production --- .../04.globals/03.problem.environment-variables/emitter.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/04.globals/03.problem.environment-variables/emitter.test.ts b/exercises/04.globals/03.problem.environment-variables/emitter.test.ts index 753c91a..7d6c216 100644 --- a/exercises/04.globals/03.problem.environment-variables/emitter.test.ts +++ b/exercises/04.globals/03.problem.environment-variables/emitter.test.ts @@ -52,7 +52,7 @@ test('logs debugging messages when run in development', () => { test('does not log debugging messages in production', () => { // 🐨 In a similar fashion, mock the `process.env.NODE_ENV` variable - // to equal to "development". + // to equal to "production". // 💰 vi.stubEnv(variableName, value) const emitter = new Emitter<{ hello: [firstName: string] }>()