push origin developer

This commit is contained in:
Peter Maquiran
2021-08-20 14:23:48 +01:00
parent c4ffa294e5
commit f5cd6a0e92
6 changed files with 46 additions and 18 deletions
+16
View File
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ModalService } from './modal.service';
describe('ModalService', () => {
let service: ModalService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ModalService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
+9
View File
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ModalService {
constructor() { }
}