@@ -19,7 +19,6 @@ 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' ;
2322
2423const KEY_RIGHT_EVENT = new KeyboardEvent ( 'keydown' , { key : 'ArrowRight' , bubbles : true } ) ;
2524const KEY_LEFT_EVENT = new KeyboardEvent ( 'keydown' , { key : 'ArrowLeft' , bubbles : true } ) ;
@@ -29,7 +28,6 @@ const KEY_ENTER_EVENT = new KeyboardEvent('keydown', { key: 'Enter', bubbles: tr
2928const KEY_SPACE_EVENT = new KeyboardEvent ( 'keydown' , { key : ' ' , bubbles : true } ) ;
3029
3130describe ( 'IgxTabs' , ( ) => {
32- configureTestSuite ( ) ;
3331
3432 const tabItemNormalCssClass = 'igx-tabs__header-item' ;
3533 const tabItemSelectedCssClass = 'igx-tabs__header-item--selected' ;
@@ -42,7 +40,8 @@ describe('IgxTabs', () => {
4240 { path : 'view5' , component : RoutingView5Component , canActivate : [ RoutingTestGuard ] }
4341 ] ;
4442
45- beforeAll ( waitForAsync ( ( ) => {
43+ beforeEach ( waitForAsync ( ( ) => {
44+
4645 TestBed . configureTestingModule ( {
4746 imports : [
4847 NoopAnimationsModule ,
0 commit comments