(token: string)
| 4130 | it('should be able to provide an attribute token', () => { |
| 4131 | const TOKEN = new InjectionToken<string>('Some token'); |
| 4132 | function factory(token: string): string { |
| 4133 | return token + ' with factory'; |
| 4134 | } |
| 4135 | @Component({ |
| 4136 | selector: 'my-comp', |
| 4137 | template: '...', |
no outgoing calls
no test coverage detected
searching dependent graphs…