(prefix: string, ...args: string[])
| 3016 | foo = ['Frodo', 'Baggins']; |
| 3017 | |
| 3018 | fn(prefix: string, ...args: string[]) { |
| 3019 | return `${prefix}, ${args.join(' ')}`; |
| 3020 | } |
| 3021 | } |
| 3022 | |
| 3023 | const fixture = TestBed.createComponent(TestComponent); |
no test coverage detected