fix(demo): clean up some things from the value accessor commit

This commit is contained in:
Ken Sodemann
2017-11-15 20:47:35 -06:00
parent f17d8ad8ce
commit 56e04325e3
2 changed files with 0 additions and 21 deletions

View File

@ -26,21 +26,4 @@ describe('InputsTestPageComponent', () => {
it('should create', () => {
expect(component).toBeTruthy();
});
describe('testInputOne', () => {
let input;
beforeEach(
fakeAsync(() => {
component.ngOnInit();
fixture.detectChanges();
tick();
const ionInput = fixture.debugElement.query(By.css('#inputOne'));
input = ionInput.query(By.css('input')).nativeElement;
})
);
it('should reflect changes to the input', () => {
expect(input).toBeTruthy();
});
});
});

View File

@ -12,8 +12,4 @@ export class InputsTestPageComponent implements OnInit {
constructor() {}
ngOnInit() {}
changed(evt) {
console.log(evt);
}
}