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 { RbIconButtonComponent } from './rb-icon-button.component';
|
2020-08-17 14:51:02 +02:00
|
|
|
import {RbCustomInputsModule} from '../rb-custom-inputs.module';
|
2020-05-22 12:52:17 +02:00
|
|
|
|
2020-08-16 20:01:56 +02:00
|
|
|
// TODO
|
|
|
|
|
2020-07-27 17:52:03 +02:00
|
|
|
describe('RbIconButtonComponent', () => {
|
|
|
|
let component: RbIconButtonComponent;
|
|
|
|
let fixture: ComponentFixture<RbIconButtonComponent>;
|
2020-05-22 12:52:17 +02:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-07-27 17:52:03 +02:00
|
|
|
declarations: [ RbIconButtonComponent ]
|
2020-05-22 12:52:17 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2020-07-27 17:52:03 +02:00
|
|
|
fixture = TestBed.createComponent(RbIconButtonComponent);
|
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();
|
|
|
|
});
|
|
|
|
});
|