Trying to build a webui using Ionic & Angular

This commit is contained in:
2022-07-17 23:46:48 +02:00
parent c0cf27780d
commit 00e601e246
58 changed files with 31063 additions and 0 deletions

View File

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