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