(env: T, spec: { [k in keyof T]: ValidatorSpec<any> })
| 4 | // Ensure that a given environment spec passes through all values from the given |
| 5 | // env object |
| 6 | export const assertPassthrough = <T>(env: T, spec: { [k in keyof T]: ValidatorSpec<any> }) => { |
| 7 | expect(cleanEnv(env, spec)).toEqual(env) |
| 8 | } |
no test coverage detected
searching dependent graphs…