Add models for search

This commit is contained in:
Peter Maquiran
2021-01-08 11:02:19 +01:00
parent a3dfd995a8
commit c89551bd13
7 changed files with 62 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { SearchDocument } from './search-document';
describe('SearchDocument', () => {
it('should create an instance', () => {
expect(new SearchDocument()).toBeTruthy();
});
});