mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
|
|
import { Store } from '@ngrx/store';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { of as observableOf } from 'rxjs';
|
|
|
|
import { LoginPageComponent } from './login-page.component';
|
|
import { ActivatedRouteStub } from '../shared/testing/active-router-stub';
|
|
|
|
describe('LoginPageComponent', () => {
|
|
let comp: LoginPageComponent;
|
|
let fixture: ComponentFixture<LoginPageComponent>;
|
|
const activatedRouteStub = Object.assign(new ActivatedRouteStub(), {
|
|
params: observableOf({})
|
|
});
|
|
|
|
const store: Store<LoginPageComponent> = jasmine.createSpyObj('store', {
|
|
/* tslint:disable:no-empty */
|
|
dispatch: {},
|
|
/* tslint:enable:no-empty */
|
|
select: observableOf(true)
|
|
});
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
TranslateModule.forRoot()
|
|
],
|
|
declarations: [LoginPageComponent],
|
|
providers: [
|
|
{ provide: ActivatedRoute, useValue: activatedRouteStub },
|
|
{ provide: Store, useValue: store }
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(LoginPageComponent);
|
|
comp = fixture.componentInstance; // SearchPageComponent test instance
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create instance', () => {
|
|
expect(comp).toBeDefined()
|
|
});
|
|
|
|
});
|