You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
628 B

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
5 years ago
import { DetailComponent } from './detail.component';
5 years ago
describe('DetailComponent', () => {
let component: DetailComponent;
let fixture: ComponentFixture<DetailComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
5 years ago
declarations: [ DetailComponent ]
})
.compileComponents();
}));
beforeEach(() => {
5 years ago
fixture = TestBed.createComponent(DetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});