Skip to content

Commit 8547f2d

Browse files
authored
Update NODE_ENV to production (#12)
1 parent 5042c41 commit 8547f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/04.globals/03.problem.environment-variables/emitter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test('logs debugging messages when run in development', () => {
5252

5353
test('does not log debugging messages in production', () => {
5454
// 🐨 In a similar fashion, mock the `process.env.NODE_ENV` variable
55-
// to equal to "development".
55+
// to equal to "production".
5656
// 💰 vi.stubEnv(variableName, value)
5757

5858
const emitter = new Emitter<{ hello: [firstName: string] }>()

0 commit comments

Comments
 (0)