| 590 | |
| 591 | it('will not refresh CheckAlways views when detectChanges is called if not marked dirty', () => { |
| 592 | @Component({ |
| 593 | template: '{{signalThing()}}|{{regularThing}}', |
| 594 | changeDetection: ChangeDetectionStrategy.Eager, |
| 595 | }) |
| 596 | class CheckAlwaysCmp { |
| 597 | regularThing = 'initial'; |
| 598 | signalThing = signal('initial'); |
| 599 | } |
| 600 | |
| 601 | const fixture = TestBed.createComponent(CheckAlwaysCmp); |
| 602 | // components are created dirty |