add type doc

This commit is contained in:
Peter Maquiran
2024-08-09 11:12:31 +01:00
parent 6cbd8d903c
commit 28bc141d38
24 changed files with 1645 additions and 148 deletions
-7
View File
@@ -1,7 +0,0 @@
import { SearchDocument } from './search-document';
describe('SearchDocument', () => {
it('should create an instance', () => {
expect(new SearchDocument()).toBeTruthy();
});
});
-8
View File
@@ -1,8 +0,0 @@
import { SafePipe } from './safe.pipe';
describe('SafePipe', () => {
it('create an instance', () => {
const pipe = new SafePipe();
expect(pipe).toBeTruthy();
});
});
-8
View File
@@ -1,8 +0,0 @@
import { SafehtmlPipe } from './safehtml.pipe';
describe('SafehtmlPipe', () => {
it('create an instance', () => {
const pipe = new SafehtmlPipe();
expect(pipe).toBeTruthy();
});
});
@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { CacheServiceService } from './cache-service.service';
describe('CacheServiceService', () => {
let service: CacheServiceService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CacheServiceService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
@@ -1,8 +0,0 @@
import { InputFilterDirective } from './input-filter.directive';
describe('InputFilterDirective', () => {
it('should create an instance', () => {
const directive = new InputFilterDirective();
expect(directive).toBeTruthy();
});
});
@@ -1,8 +0,0 @@
import { VisibilityDirective } from './visibility.directive';
describe('VisibilityDirective', () => {
it('should create an instance', () => {
const directive = new VisibilityDirective();
expect(directive).toBeTruthy();
});
});
@@ -1,8 +0,0 @@
import { VisibilityDirective } from './visibility.directive';
describe('VisibilityDirective', () => {
it('should create an instance', () => {
const directive = new VisibilityDirective();
expect(directive).toBeTruthy();
});
});
@@ -1,24 +0,0 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { DeplomaOptionsPage } from './deploma-options.page';
describe('DeplomaOptionsPage', () => {
let component: DeplomaOptionsPage;
let fixture: ComponentFixture<DeplomaOptionsPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ DeplomaOptionsPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(DeplomaOptionsPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { PublicationEventFolderService } from './publication-event-folder.service';
describe('PublicationEventFolderService', () => {
let service: PublicationEventFolderService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(PublicationEventFolderService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
-16
View File
@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { SessionService } from './session.service';
describe('SessionService', () => {
let service: SessionService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SessionService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});