luthor/otis/src/app/natures/nature-detail/nature-detail.component.spe...

25 lines
679 B
TypeScript

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