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