1
0

Finalized auth module

This commit is contained in:
Giuseppe Digilio
2018-02-22 15:47:15 +01:00
parent 4488a450c0
commit 2637f1c28e
12 changed files with 143 additions and 114 deletions

View File

@@ -1,19 +1,19 @@
/* tslint:disable:no-unused-variable */
import { DebugElement, CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
import { async, ComponentFixture, TestBed } from "@angular/core/testing";
import { By } from "@angular/platform-browser";
import { Router } from "@angular/router";
/*import { DebugElement, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { Router } from '@angular/router';
// import ngrx
import { Store, StoreModule } from "@ngrx/store";
import { Store, StoreModule } from '@ngrx/store';
// reducers
import { reducer } from "../../app.reducers";
import { reducer } from '../../app.reducers';
// test this component
import { SignOutComponent } from "./log-out.component";
import { SignOutComponent } from './log-out.component';
describe("Component: Signout", () => {
describe('Component: Signout', () => {
let component: SignOutComponent;
let fixture: ComponentFixture<SignOutComponent>;
@@ -39,7 +39,8 @@ describe("Component: Signout", () => {
component = fixture.componentInstance;
}));
it("should create an instance", () => {
it('should create an instance', () => {
expect(component).toBeTruthy();
});
});
*/