blob: da7698d78024715fa6336753917aa6384a82b344 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CenterComponent } from './center.component';
describe('CenterComponent', () => {
let component: CenterComponent;
let fixture: ComponentFixture<CenterComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CenterComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CenterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});