Files
doneit-web/src/app/modals/group-icons/group-icons.page.spec.ts
T
2021-11-18 13:01:53 +01:00

25 lines
690 B
TypeScript

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