@@ -15,10 +15,9 @@ import { RoutingViewComponentsModule,
1515 RoutingView1Component ,
1616 RoutingView2Component ,
1717 RoutingView3Component } from './routing-view-components' ;
18- import { wait } from '../test-utils/ui-interactions.spec' ;
1918
2019
21- fdescribe ( 'TabBar' , ( ) => {
20+ describe ( 'TabBar' , ( ) => {
2221 configureTestSuite ( ) ;
2322 beforeEach ( async ( ( ) => {
2423
@@ -165,7 +164,7 @@ fdescribe('TabBar', () => {
165164 tabbar . tabs . forEach ( ( tab ) => expect ( tab . relatedPanel . customTabTemplate ) . toBeDefined ( ) ) ;
166165 } ) ;
167166
168- fit ( 'should navigate to the correct URL when clicking on tab buttons' , fakeAsync ( ( ) => {
167+ it ( 'should navigate to the correct URL when clicking on tab buttons' , fakeAsync ( ( ) => {
169168
170169 const router = TestBed . get ( Router ) ;
171170 const location = TestBed . get ( Location ) ;
@@ -191,7 +190,7 @@ fdescribe('TabBar', () => {
191190 expect ( location . path ( ) ) . toBe ( '/view1' ) ;
192191 } ) ) ;
193192
194- fit ( 'should select the correct tab button/panel when navigating an URL' , fakeAsync ( ( ) => {
193+ it ( 'should select the correct tab button/panel when navigating an URL' , fakeAsync ( ( ) => {
195194
196195 const router = TestBed . get ( Router ) ;
197196 const location = TestBed . get ( Location ) ;
@@ -232,9 +231,6 @@ fdescribe('TabBar', () => {
232231 expect ( bottomNav . tabs . toArray ( ) [ 0 ] . isSelected ) . toBe ( true ) ;
233232
234233 } ) ) ;
235-
236-
237-
238234} ) ;
239235
240236@Component ( {
@@ -343,13 +339,6 @@ class TemplatedTabBarTestComponent {
343339 @ViewChild ( 'wrapperDiv' ) public wrapperDiv : any ;
344340}
345341
346-
347-
348-
349-
350-
351-
352-
353342@Component ( {
354343 template : `
355344 <div #wrapperDiv>
0 commit comments