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