Refactor input fields, converter selectors and error messages into their own components.
Some checks failed
continuous-integration/drone the build failed
Some checks failed
continuous-integration/drone the build failed
This commit is contained in:
parent
62ba5a3357
commit
81db470a5a
16 changed files with 337 additions and 157 deletions
25
src/app/text-input-field/text-input-field.component.spec.ts
Normal file
25
src/app/text-input-field/text-input-field.component.spec.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { TextInputFieldComponent } from './text-input-field.component';
|
||||
|
||||
describe('TextInputFieldComponent', () => {
|
||||
let component: TextInputFieldComponent;
|
||||
let fixture: ComponentFixture<TextInputFieldComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ TextInputFieldComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(TextInputFieldComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue