import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { GooggleSignInComponent } from './googgle-sign-in.component'; describe('GooggleSignInComponent', () => { let component: GooggleSignInComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ GooggleSignInComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(GooggleSignInComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });