funky-framadate-front/src/app/core/services/toast.service.spec.ts

17 lines
343 B
TypeScript
Raw Normal View History

2020-05-01 19:10:17 +02:00
import { TestBed } from '@angular/core/testing';
import { ToastService } from './toast.service';
2020-05-01 19:10:17 +02:00
describe('MessageService', () => {
let service: ToastService;
2020-05-01 19:10:17 +02:00
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ToastService);
2020-05-01 19:10:17 +02:00
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});