Add messaging service

This commit is contained in:
Ben Goldsworthy 2020-11-08 17:38:37 +00:00
parent 659b37b589
commit d7adc0f514
4 changed files with 72 additions and 1 deletions

View file

@ -0,0 +1,12 @@
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();
});
});