Files
frontend-hideyoshi.com/src/app/header/header-popup/callback/callback.component.spec.ts
Vitor Hideyoshi 64ec23f2c1 [0.0.2] Adds Google and Github OAuth2 Login
Implements integration with the Backend API feature of OAuth2 Login with Google and Github.
2022-11-10 00:49:03 -03:00

24 lines
613 B
TypeScript

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