A little cleanup in unit tests.

This commit is contained in:
Michael W Spalti
2019-09-09 12:15:09 -07:00
parent d9fb68dce9
commit c3102b9d43
2 changed files with 1 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import { async, ComponentFixture, inject, TestBed } from '@angular/core/testing'
import { FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms'; import { FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms';
import { By } from '@angular/platform-browser'; import { By } from '@angular/platform-browser';
import { Store, StoreModule, select } from '@ngrx/store'; import { Store, StoreModule } from '@ngrx/store';
import { LogInComponent } from './log-in.component'; import { LogInComponent } from './log-in.component';
import { authReducer } from '../../core/auth/auth.reducer'; import { authReducer } from '../../core/auth/auth.reducer';

View File

@@ -96,9 +96,6 @@ export class AuthServiceStub {
return observableOf(this.redirectUrl); return observableOf(this.redirectUrl);
} }
public doAuthentication(isStandalonePage, email, password) {
return;
}
public storeToken(token: AuthTokenInfo) { public storeToken(token: AuthTokenInfo) {
return; return;
} }