X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tour-of-heroes;a=blobdiff_plain;f=src%2Fapp%2Fin-memory-data.service.spec.ts;fp=src%2Fapp%2Fin-memory-data.service.spec.ts;h=eefd761e2f522b850586a4d43eaf061381912da0;hp=0000000000000000000000000000000000000000;hb=681885aac6e28f9c5aa59aaa904b158001851387;hpb=e4c5a4495ba6ae5a30b48445f7f05df0328a6b35 diff --git a/src/app/in-memory-data.service.spec.ts b/src/app/in-memory-data.service.spec.ts new file mode 100644 index 0000000..eefd761 --- /dev/null +++ b/src/app/in-memory-data.service.spec.ts @@ -0,0 +1,16 @@ +import { TestBed } from '@angular/core/testing'; + +import { InMemoryDataService } from './in-memory-data.service'; + +describe('InMemoryDataService', () => { + let service: InMemoryDataService; + + beforeEach(() => { + TestBed.configureTestingModule({}); + service = TestBed.inject(InMemoryDataService); + }); + + it('should be created', () => { + expect(service).toBeTruthy(); + }); +});