Files
doneit-web/src/app/shared/empty-container/empty-container.page.spec.ts
T
tiago.kayaya 2c766015e7 -style approve entents for desktop finished
-style expedient  for desktop ongoing
2021-03-18 16:30:03 +01:00

25 lines
718 B
TypeScript

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