We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb6e2f6 commit 933b12fCopy full SHA for 933b12f
1 file changed
test/env.test.ts
@@ -379,7 +379,9 @@ describe('env', () => {
379
380
it('should support set operation with overrides', () => {
381
const base = { PATH: '/usr/bin' }
382
- const overrides: Record<string, string | undefined> = { NODE_ENV: 'test' }
+ const overrides: Record<string, string | undefined> = {
383
+ NODE_ENV: 'test',
384
+ }
385
const proxy = createEnvProxy(base, overrides)
386
;(proxy as any).NEW_VAR = 'new-value'
387
expect((proxy as any).NEW_VAR).toBe('new-value')
0 commit comments