fuse-angular/src/app/core/fuse-component/fuse.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
630 B
TypeScript

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