(msg: string)
| 170 | compare: function (actualFixture: any, expectedComponentType: Type<any>) { |
| 171 | const failOutput = arguments[2]; |
| 172 | const msgFn = (msg: string): string => [msg, failOutput].filter(Boolean).join(', '); |
| 173 | |
| 174 | // verify correct actual type |
| 175 | if (!(actualFixture instanceof ComponentFixture)) { |