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