definma-ui/src/app/rb-custom-inputs/rb-array-input/rb-array-input.component.spec.ts

26 lines
672 B
TypeScript
Raw Normal View History

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;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});