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