fuse-angular/src/app/main/apps/mail/views/classic/classic-view.component.spec.ts
mustafahlvc c3e241c81c Layout Service created,
Starting the build navigation,
Some Components added for tests.
2017-07-08 19:12:52 +03:00

26 lines
668 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ClassicViewComponent } from './classic-view.component';
describe('ClassicViewComponent', () => {
let component: ClassicViewComponent;
let fixture: ComponentFixture<ClassicViewComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ClassicViewComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ClassicViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});