mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
25 lines
689 B
TypeScript
25 lines
689 B
TypeScript
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { InactivityPage } from './inactivity.page';
|
||
|
|
|
||
|
|
describe('InactivityPage', () => {
|
||
|
|
let component: InactivityPage;
|
||
|
|
let fixture: ComponentFixture<InactivityPage>;
|
||
|
|
|
||
|
|
beforeEach(waitForAsync(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
declarations: [ InactivityPage ],
|
||
|
|
imports: [IonicModule.forRoot()]
|
||
|
|
}).compileComponents();
|
||
|
|
|
||
|
|
fixture = TestBed.createComponent(InactivityPage);
|
||
|
|
component = fixture.componentInstance;
|
||
|
|
fixture.detectChanges();
|
||
|
|
}));
|
||
|
|
|
||
|
|
it('should create', () => {
|
||
|
|
expect(component).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|