add pages for uploading and help

This commit is contained in:
2019-10-09 16:11:05 +02:00
parent e547b67105
commit 8b42476b72
24 changed files with 379 additions and 531 deletions

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HelpPageComponent } from './help-page.component';
describe('HelpPageComponent', () => {
let component: HelpPageComponent;
let fixture: ComponentFixture<HelpPageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HelpPageComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HelpPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});