2020-07-14 15:58:33 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { DocumentationComponent } from './documentation.component';
|
2020-08-16 20:01:56 +02:00
|
|
|
import {RbUiComponentsModule} from '@inst-iot/bosch-angular-ui-components';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RbCustomInputsModule} from '../rb-custom-inputs/rb-custom-inputs.module';
|
|
|
|
|
|
|
|
// TODO
|
2020-07-14 15:58:33 +02:00
|
|
|
|
|
|
|
describe('DocumentationComponent', () => {
|
|
|
|
let component: DocumentationComponent;
|
|
|
|
let fixture: ComponentFixture<DocumentationComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-08-16 20:01:56 +02:00
|
|
|
declarations: [ DocumentationComponent ],
|
|
|
|
imports: [
|
|
|
|
RbCustomInputsModule
|
|
|
|
]
|
2020-07-14 15:58:33 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(DocumentationComponent);
|
|
|
|
component = fixture.componentInstance;
|
2020-08-16 20:01:56 +02:00
|
|
|
component.ngOnInit();
|
2020-07-14 15:58:33 +02:00
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|