Files
MOBIS_PUBLIC/src/app/mobisplugins/minisecchi/measure/colourathalfdepth/colourathalfdepth.page.spec.ts
Norbert Schmidt 3b3353fff1 Initial commit
2023-01-02 09:30:17 +01:00

25 lines
738 B
TypeScript

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