Angular Tour of Heroes: reprise du chapitre 4 (Services)

This commit is contained in:
2019-10-25 15:56:29 +02:00
parent c735c39693
commit 3f1898c529
9 changed files with 120 additions and 2 deletions

View File

@ -0,0 +1,12 @@
import { TestBed } from '@angular/core/testing';
import { MessageService } from './message.service';
describe('MessageService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: MessageService = TestBed.get(MessageService);
expect(service).toBeTruthy();
});
});