mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
17 lines
348 B
TypeScript
17 lines
348 B
TypeScript
import { TestBed } from '@angular/core/testing'
|
|
|
|
import { SearchService } from './search.service'
|
|
|
|
describe('SearchService', () => {
|
|
let service: SearchService
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({})
|
|
service = TestBed.inject(SearchService)
|
|
})
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy()
|
|
})
|
|
})
|