| 681 | class StandalonePipe {} |
| 682 | |
| 683 | @Pipe({ |
| 684 | name: 'test', |
| 685 | standalone: false, |
| 686 | }) |
| 687 | class NonStandalonePipe {} |
| 688 | |
| 689 | const getExpectedError = (typeName: string) => |
| 690 | `An override for the ${typeName} class has the \`standalone\` flag. ` + |