| 12345678910111213141516171819202122232425 |
- import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
- import { IonicModule } from '@ionic/angular';
- import { RegisterFormPage } from './register-form.page';
- describe('RegisterFormPage', () => {
- let component: RegisterFormPage;
- let fixture: ComponentFixture<RegisterFormPage>;
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- declarations: [ RegisterFormPage ],
- imports: [IonicModule.forRoot()]
- }).compileComponents();
- fixture = TestBed.createComponent(RegisterFormPage);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|