mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-14 18:46:52 +01:00
17 lines
352 B
TypeScript
17 lines
352 B
TypeScript
|
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
|
||
|
|
import { ToastService } from './toast.service';
|
||
|
|
|
||
|
|
describe('ToastService', () => {
|
||
|
|
let service: ToastService;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
TestBed.configureTestingModule({});
|
||
|
|
service = TestBed.inject(ToastService);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should be created', () => {
|
||
|
|
expect(service).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|