paperless-ngx/src-ui/src/app/services/toast.service.spec.ts
2020-10-27 01:11:32 +01:00

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();
});
});