Files
doneit-web/src/app/modals/forward/forward.page.spec.ts
T
tiago.kayaya e0e6c35678 save
2021-06-17 12:24:31 +01:00

25 lines
668 B
TypeScript

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