Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea authored and nsbarsukov committed Oct 8, 2024
1 parent 6220d1c commit 51ea4ff
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type {ComponentFixture} from '@angular/core/testing';
import {TestBed} from '@angular/core/testing';
import {ActivatedRoute} from '@angular/router';
import {PAGE_SEE_ALSO, TuiDocPage} from '@taiga-ui/addon-doc';
import {TUI_DOC_DEFAULT_TABS} from '@taiga-ui/addon-doc/tokens';
import {EMPTY_QUERY} from '@taiga-ui/cdk';
Expand All @@ -12,6 +13,10 @@ describe('TuiDocPageComponent', () => {
await TestBed.configureTestingModule({
imports: [TuiDocPage],
providers: [
{
provide: ActivatedRoute,
useValue: {},
},
{
provide: TUI_DOC_DEFAULT_TABS,
useValue: ['tab1', 'tab2'],
Expand Down

0 comments on commit 51ea4ff

Please sign in to comment.