argos/dmp-frontend/src/app/ui/misc/search/search.component.spec.ts

26 lines
642 B
TypeScript
Raw Normal View History

2021-09-24 20:52:14 +02:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2019-04-24 11:26:53 +02:00
import { SearchComponent } from './search.component';
describe('SearchComponent', () => {
let component: SearchComponent;
let fixture: ComponentFixture<SearchComponent>;
2021-09-24 20:52:14 +02:00
beforeEach(waitForAsync(() => {
2019-04-24 11:26:53 +02:00
TestBed.configureTestingModule({
declarations: [ SearchComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SearchComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});