import { ComponentFixture, TestBed } from '@angular/core/testing';

import { AccountVerifyComponent } from './account-verify.component';

describe('AccountVerifyComponent', () => {
  let component: AccountVerifyComponent;
  let fixture: ComponentFixture<AccountVerifyComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ AccountVerifyComponent ]
    })
    .compileComponents();

    fixture = TestBed.createComponent(AccountVerifyComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
