import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { JaxLoginComponent } from './jax-login.component'; describe('JaxLoginComponent', () => { let component: JaxLoginComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ JaxLoginComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(JaxLoginComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });