52 lines
1.8 KiB
TypeScript
52 lines
1.8 KiB
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { LoginComponent } from './login.component';
|
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { ToastrModule } from 'ngx-toastr';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
import { MatInputModule } from '@angular/material/input';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { of, throwError } from 'rxjs';
|
|
import { ConfigService } from '@services/config.service';
|
|
import { GlobalStatusComponent } from '../global-status/global-status.component';
|
|
|
|
describe('LoginComponent', () => {
|
|
let component: LoginComponent;
|
|
let fixture: ComponentFixture<LoginComponent>;
|
|
|
|
beforeEach(async () => {
|
|
const mockConfigService = {
|
|
apiUrl: 'http://mock-api-url',
|
|
mercureUrl: 'http://mock-mercure-url'
|
|
};
|
|
|
|
await TestBed.configureTestingModule({
|
|
declarations: [LoginComponent, GlobalStatusComponent],
|
|
imports: [
|
|
FormsModule,
|
|
ToastrModule.forRoot(),
|
|
BrowserAnimationsModule,
|
|
MatFormFieldModule,
|
|
MatInputModule,
|
|
MatIconModule,
|
|
MatDialogModule,
|
|
TranslateModule.forRoot()
|
|
],
|
|
providers: [
|
|
provideHttpClient(withInterceptorsFromDi()),
|
|
{ provide: ConfigService, useValue: mockConfigService }
|
|
]
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(LoginComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
}); |