12345678910111213141516171819202122232425262728 |
- /* tslint:disable:no-unused-variable */
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
- import { By } from '@angular/platform-browser';
- import { DebugElement } from '@angular/core';
- import { TabsComponent } from './tabs.component';
- describe('TabsComponent', () => {
- let component: TabsComponent;
- let fixture: ComponentFixture<TabsComponent>;
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ TabsComponent ]
- })
- .compileComponents();
- }));
- beforeEach(() => {
- fixture = TestBed.createComponent(TabsComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|