Files
doneit-web/src/app/pages/gabinete-digital/request-to-appear/request-to-appear.component.spec.ts
T
2021-04-23 10:35:53 +01:00

25 lines
761 B
TypeScript

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