@@ -15,10 +15,9 @@ import { RoutingViewComponentsModule,
15
15
RoutingView1Component ,
16
16
RoutingView2Component ,
17
17
RoutingView3Component } from './routing-view-components' ;
18
- import { wait } from '../test-utils/ui-interactions.spec' ;
19
18
20
19
21
- fdescribe ( 'TabBar' , ( ) => {
20
+ describe ( 'TabBar' , ( ) => {
22
21
configureTestSuite ( ) ;
23
22
beforeEach ( async ( ( ) => {
24
23
@@ -165,7 +164,7 @@ fdescribe('TabBar', () => {
165
164
tabbar . tabs . forEach ( ( tab ) => expect ( tab . relatedPanel . customTabTemplate ) . toBeDefined ( ) ) ;
166
165
} ) ;
167
166
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 ( ( ) => {
169
168
170
169
const router = TestBed . get ( Router ) ;
171
170
const location = TestBed . get ( Location ) ;
@@ -191,7 +190,7 @@ fdescribe('TabBar', () => {
191
190
expect ( location . path ( ) ) . toBe ( '/view1' ) ;
192
191
} ) ) ;
193
192
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 ( ( ) => {
195
194
196
195
const router = TestBed . get ( Router ) ;
197
196
const location = TestBed . get ( Location ) ;
@@ -232,9 +231,6 @@ fdescribe('TabBar', () => {
232
231
expect ( bottomNav . tabs . toArray ( ) [ 0 ] . isSelected ) . toBe ( true ) ;
233
232
234
233
} ) ) ;
235
-
236
-
237
-
238
234
} ) ;
239
235
240
236
@Component ( {
@@ -343,13 +339,6 @@ class TemplatedTabBarTestComponent {
343
339
@ViewChild ( 'wrapperDiv' ) public wrapperDiv : any ;
344
340
}
345
341
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
342
@Component ( {
354
343
template : `
355
344
<div #wrapperDiv>
0 commit comments