Skip to content

Commit efbd200

Browse files
committed
chore(tabs/bottomNav): fdescribe -> describe #4297
1 parent 38cf531 commit efbd200

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

projects/igniteui-angular/src/lib/tabbar/tabbar.component.spec.ts

+3-14
Original file line numberDiff line numberDiff line change
@@ -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>

projects/igniteui-angular/src/lib/tabs/tabs.component.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('IgxTabs', () => {
2020
declarations: [TabsTestComponent, TabsTest2Component, TemplatedTabsTestComponent,
2121
TabsTestSelectedTabComponent, TabsTestCustomStylesComponent, TabsTestBug4420Component],
2222
imports: [IgxTabsModule, IgxButtonModule, IgxDropDownModule, IgxToggleModule,
23-
BrowserAnimationsModule, NoopAnimationsModule, RouterTestingModule]
23+
BrowserAnimationsModule, RouterTestingModule]
2424
})
2525
.compileComponents();
2626
}));

0 commit comments

Comments
 (0)