13 lines
348 B
TypeScript
13 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();
|
||
|
});
|
||
|
});
|