js/example-app/app/pages/auth/auth-page.component.spec.ts
crusader bd8104ffe2 ing
2018-03-18 00:03:13 +09:00

26 lines
643 B
TypeScript

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();
});
});