js/example-app/app/pages/auth/auth-page.component.spec.ts

26 lines
643 B
TypeScript
Raw Normal View History

2018-03-17 15:03:13 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AuthPageComponent } from './auth-page.component';
describe('AuthPageComponent', () => {
let component: AuthPageComponent;
let fixture: ComponentFixture<AuthPageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AuthPageComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AuthPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});