| 423 | template?: string, |
| 424 | ) { |
| 425 | @Component({ |
| 426 | template, |
| 427 | }) |
| 428 | class TestComponent implements ITestComponent<State> { |
| 429 | readonly state = rxState<State>(setupFn); |
| 430 | |
| 431 | readonly count$ = this.state.select('count'); |
| 432 | readonly count = this.state.signal('count'); |
| 433 | } |
| 434 | |
| 435 | TestBed.configureTestingModule({ |
| 436 | imports: [TestComponent], |