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