blob: 418b7e9caa0ee32250d0bf7a1de345c6e3733216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { TestBed } from '@angular/core/testing';
import { SearchTemplateService } from './search-template.service';
describe('SearchTemplateService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: SearchTemplateService = TestBed.get(SearchTemplateService);
expect(service).toBeTruthy();
});
});
|