Add messaging service
This commit is contained in:
parent
659b37b589
commit
d7adc0f514
4 changed files with 72 additions and 1 deletions
12
src/app/service/messaging.service.spec.ts
Normal file
12
src/app/service/messaging.service.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
Reference in a new issue