This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/src/app/service/messaging.service.spec.ts

12 lines
348 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { MessagingService } from './messaging.service';
describe('MessagingService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: MessagingService = TestBed.get(MessagingService);
expect(service).toBeTruthy();
});
});