mirror of
https://github.com/mempool/mempool.git
synced 2025-01-10 07:26:46 +01:00
26 lines
657 B
TypeScript
26 lines
657 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { SearchFormComponent } from './search-form.component';
|
||
|
|
||
|
describe('SearchFormComponent', () => {
|
||
|
let component: SearchFormComponent;
|
||
|
let fixture: ComponentFixture<SearchFormComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ SearchFormComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(SearchFormComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|