|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
2
|
+
|
|
|
3
|
+import { Search } from './search';
|
|
|
4
|
+
|
|
|
5
|
+describe('Search', () => {
|
|
|
6
|
+ let component: Search;
|
|
|
7
|
+ let fixture: ComponentFixture<Search>;
|
|
|
8
|
+
|
|
|
9
|
+ beforeEach(async () => {
|
|
|
10
|
+ await TestBed.configureTestingModule({
|
|
|
11
|
+ imports: [Search],
|
|
|
12
|
+ }).compileComponents();
|
|
|
13
|
+
|
|
|
14
|
+ fixture = TestBed.createComponent(Search);
|
|
|
15
|
+ component = fixture.componentInstance;
|
|
|
16
|
+ await fixture.whenStable();
|
|
|
17
|
+ });
|
|
|
18
|
+
|
|
|
19
|
+ it('should create', () => {
|
|
|
20
|
+ expect(component).toBeTruthy();
|
|
|
21
|
+ });
|
|
|
22
|
+});
|