| 23 | describe('createAngularTable', () => { |
| 24 | test('should render with required signal inputs', () => { |
| 25 | @Component({ |
| 26 | selector: 'app-fake', |
| 27 | template: ``, |
| 28 | standalone: true, |
| 29 | }) |
| 30 | class FakeComponent { |
| 31 | data = input.required<any[]>() |
| 32 | |
| 33 | table = createAngularTable(() => ({ |
| 34 | data: this.data(), |
| 35 | columns: [], |
| 36 | getCoreRowModel: getCoreRowModel(), |
| 37 | })) |
| 38 | } |
| 39 | |
| 40 | const fixture = TestBed.createComponent(FakeComponent) |
| 41 | setFixtureSignalInputs(fixture, { |
nothing calls this directly
no test coverage detected