(options: {textDirection?: Direction} = {})
| 69 | const end = async (modifierKeys?: ModifierKeys) => await keydown('End', modifierKeys); |
| 70 | |
| 71 | async function setupTestTabs(options: {textDirection?: Direction} = {}) { |
| 72 | TestBed.configureTestingModule({ |
| 73 | providers: [provideFakeDirectionality(options.textDirection ?? 'ltr')], |
| 74 | }); |
| 75 | |
| 76 | fixture = TestBed.createComponent(TestTabsComponent); |
| 77 | testComponent = fixture.componentInstance; |
| 78 | |
| 79 | await fixture.whenStable(); |
| 80 | defineTestVariables(); |
| 81 | } |
| 82 | |
| 83 | async function updateTabs( |
| 84 | options: { |
no test coverage detected
searching dependent graphs…