remove unnecessary code

This commit is contained in:
Peter Maquiran
2024-10-18 12:12:55 +01:00
parent 8484b1b600
commit 3f41e9e9c0
102 changed files with 102 additions and 196 deletions
@@ -0,0 +1,24 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { HeaderPage } from './header.page';
describe('HeaderPage', () => {
let component: HeaderPage;
let fixture: ComponentFixture<HeaderPage>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HeaderPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(HeaderPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});