projecte_ionic_entrega_01/src/app/pages/form/form.page.spec.ts

25 lines
647 B
TypeScript
Raw Normal View History

2021-12-01 18:35:44 +01:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { FormPage } from './form.page';
describe('FormPage', () => {
let component: FormPage;
let fixture: ComponentFixture<FormPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ FormPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(FormPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});