ts-mean
Version:
Boilerplate for a TS-MEAN App
26 lines (20 loc) • 632 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SpacerComponent } from './spacer.component';
describe('SpacerComponent', () => {
let component: SpacerComponent;
let fixture: ComponentFixture<SpacerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SpacerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SpacerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});