paperless-ngx/src-ui/src/app/services/toast.service.spec.ts

17 lines
352 B
TypeScript
Raw Normal View History

2020-10-27 01:10:18 +01:00
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();
});
});