cambios en el aspecto. Validators en el formulario de evento.

This commit is contained in:
2021-02-19 13:06:52 +01:00
parent dca38179bb
commit 65658f5aa3
13 changed files with 551 additions and 19 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { LoginService } from './login.service';
describe('LoginService', () => {
let service: LoginService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LoginService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});