@@ -19,6 +19,7 @@ import { UIInteractions, wait } from '../../test-utils/ui-interactions.spec';
1919import { IgxTabContentComponent } from './tab-content.component' ;
2020import { RoutingTestGuard } from '../../test-utils/routing-test-guard.spec' ;
2121import { RoutingView1Component , RoutingView2Component , RoutingView3Component , RoutingView4Component , RoutingView5Component } from '../../test-utils/routing-view-components.spec' ;
22+ import { configureTestSuite } from '../../test-utils/configure-suite' ;
2223
2324const KEY_RIGHT_EVENT = new KeyboardEvent ( 'keydown' , { key : 'ArrowRight' , bubbles : true } ) ;
2425const KEY_LEFT_EVENT = new KeyboardEvent ( 'keydown' , { key : 'ArrowLeft' , bubbles : true } ) ;
@@ -28,6 +29,7 @@ const KEY_ENTER_EVENT = new KeyboardEvent('keydown', { key: 'Enter', bubbles: tr
2829const KEY_SPACE_EVENT = new KeyboardEvent ( 'keydown' , { key : ' ' , bubbles : true } ) ;
2930
3031describe ( 'IgxTabs' , ( ) => {
32+ configureTestSuite ( ) ;
3133
3234 const tabItemNormalCssClass = 'igx-tabs__header-item' ;
3335 const tabItemSelectedCssClass = 'igx-tabs__header-item--selected' ;
@@ -40,7 +42,7 @@ describe('IgxTabs', () => {
4042 { path : 'view5' , component : RoutingView5Component , canActivate : [ RoutingTestGuard ] }
4143 ] ;
4244
43- beforeEach ( waitForAsync ( ( ) => {
45+ beforeAll ( waitForAsync ( ( ) => {
4446 TestBed . configureTestingModule ( {
4547 imports : [
4648 NoopAnimationsModule ,
0 commit comments