2021-05-24 16:49:25 +01:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-06-08 15:59:06 +01:00
|
|
|
import { BadRequestPage } from './bad-request.page';
|
2021-05-24 16:49:25 +01:00
|
|
|
|
2021-06-08 15:59:06 +01:00
|
|
|
describe('BadRequestPage', () => {
|
|
|
|
|
let component: BadRequestPage;
|
|
|
|
|
let fixture: ComponentFixture<BadRequestPage>;
|
2021-05-24 16:49:25 +01:00
|
|
|
|
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-06-08 15:59:06 +01:00
|
|
|
declarations: [ BadRequestPage ],
|
2021-05-24 16:49:25 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-06-08 15:59:06 +01:00
|
|
|
fixture = TestBed.createComponent(BadRequestPage);
|
2021-05-24 16:49:25 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|