(..._args: ReadonlyArray<string>)
| 41 | |
| 42 | it('Accepts function arguments as a List value', () => { |
| 43 | function getArgs(..._args: ReadonlyArray<string>) { |
| 44 | return arguments; |
| 45 | } |
| 46 | const listField = getArgs('one', 'two'); |
| 47 | |
| 48 | expect(complete({ listField })).toEqual({ |
no outgoing calls
no test coverage detected
searching dependent graphs…