Attendees Enhancments

This commit is contained in:
Paulo Pinto
2020-08-26 14:24:18 +01:00
parent 97ac242c78
commit e8e47b8680
9 changed files with 187 additions and 48 deletions
+16
View File
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ContactsService } from './contacts.service';
describe('ContactsService', () => {
let service: ContactsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ContactsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});