(foo: any, bar: any, baz: any)
| 784 | |
| 785 | // @ts-expect-error |
| 786 | findIndex(foo: any, bar: any, baz: any) { |
| 787 | expect(foo).toBe('foo') |
| 788 | expect(bar).toBe('bar') |
| 789 | expect(baz).toBe('baz') |
| 790 | return super.findIndex(obj => obj.id === bar) |
| 791 | } |
| 792 | |
| 793 | findLast(foo: any, bar: any, baz: any) { |
| 794 | expect(foo).toBe('foo') |
no outgoing calls
no test coverage detected