This commit is contained in:
Peter Maquiran
2021-08-11 10:52:31 +01:00
parent dcbe98df94
commit 4bcaba8ee0
11 changed files with 248 additions and 23 deletions
+16
View File
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { DeplomaService } from './deploma.service';
describe('DeplomaService', () => {
let service: DeplomaService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DeplomaService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});