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