mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-11 10:00:48 -05: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();
|
|
});
|
|
});
|