Skip to content

Commit 933b12f

Browse files
committed
fix(format): reformat object literal in env test
Fixes CI formatting validation by splitting object literal across multiple lines with trailing comma per style guide.
1 parent eb6e2f6 commit 933b12f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/env.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,9 @@ describe('env', () => {
379379

380380
it('should support set operation with overrides', () => {
381381
const base = { PATH: '/usr/bin' }
382-
const overrides: Record<string, string | undefined> = { NODE_ENV: 'test' }
382+
const overrides: Record<string, string | undefined> = {
383+
NODE_ENV: 'test',
384+
}
383385
const proxy = createEnvProxy(base, overrides)
384386
;(proxy as any).NEW_VAR = 'new-value'
385387
expect((proxy as any).NEW_VAR).toBe('new-value')

0 commit comments

Comments
 (0)