(foo: any, bar: any, baz: any)
| 807 | |
| 808 | // @ts-expect-error |
| 809 | forEach(foo: any, bar: any, baz: any) { |
| 810 | expect(foo).toBe('foo') |
| 811 | expect(bar).toBe('bar') |
| 812 | expect(baz).toBe('baz') |
| 813 | } |
| 814 | |
| 815 | // @ts-expect-error |
| 816 | map(foo: any, bar: any, baz: any) { |
no outgoing calls
no test coverage detected