2020-05-22 12:52:17 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2020-07-27 17:52:03 +02:00
|
|
|
import { RbArrayInputComponent } from './rb-array-input.component';
|
2020-05-22 12:52:17 +02:00
|
|
|
|
2020-07-27 17:52:03 +02:00
|
|
|
describe('RbArrayInputComponent', () => {
|
|
|
|
let component: RbArrayInputComponent;
|
|
|
|
let fixture: ComponentFixture<RbArrayInputComponent>;
|
2020-05-22 12:52:17 +02:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-07-27 17:52:03 +02:00
|
|
|
declarations: [ RbArrayInputComponent ]
|
2020-05-22 12:52:17 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2020-07-27 17:52:03 +02:00
|
|
|
fixture = TestBed.createComponent(RbArrayInputComponent);
|
2020-05-22 12:52:17 +02:00
|
|
|
component = fixture.componentInstance;
|
2020-08-16 20:01:56 +02:00
|
|
|
component.ngOnInit();
|
2020-05-22 12:52:17 +02:00
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|