(defaults: T)
| 520 | }) |
| 521 | |
| 522 | export function fixtureFactory<T>(defaults: T): (params?: Partial<T>) => T { |
| 523 | return (params = {}) => merge({}, defaults, params) |
| 524 | } |
| 525 | |
| 526 | describe('helpers', () => { |
| 527 | const fnFactory = fixtureFactory<FunctionDeclaration>({ |
no outgoing calls
no test coverage detected
searching dependent graphs…