Files
2021-04-29 13:58:52 +01:00

25 lines
661 B
TypeScript

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