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