2020-01-16 14:37:11 +01:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { ErasableInputComponent } from './erasable-input.component';
|
|
|
|
|
|
|
|
describe('ErasableInputComponent', () => {
|
2020-04-21 10:50:26 +02:00
|
|
|
let component: ErasableInputComponent;
|
|
|
|
let fixture: ComponentFixture<ErasableInputComponent>;
|
2020-01-16 14:37:11 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [ErasableInputComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2020-01-16 14:37:11 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(ErasableInputComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2020-01-16 14:37:11 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2020-01-16 14:37:11 +01:00
|
|
|
});
|