Merge branch 'master' of https://codefirst.iut.uca.fr/git/dorian.hodin/Daidokoro into formAdvanced
parent
016118938c
commit
95ee995051
@ -1 +0,0 @@
|
||||
<h1>aadadafaaaaaaaaaaaaaaaaaaaaaaaaaaa</h1>
|
@ -1,23 +0,0 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { LoginComponent } from './login.component';
|
||||
|
||||
describe('LoginComponent', () => {
|
||||
let component: LoginComponent;
|
||||
let fixture: ComponentFixture<LoginComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [LoginComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(LoginComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
@ -1,21 +0,0 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import {LoginService} from "../../service/login.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-login',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './login.component.html',
|
||||
styleUrl: './login.component.css'
|
||||
})
|
||||
export class LoginComponent implements OnInit{
|
||||
|
||||
constructor(private loginService: LoginService) {
|
||||
// this.loginService.login()
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.loginService.login()
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue