build(examples): work around protractor typings issues and fix existing type errors

This works around the typings issues until we have a build of protractor with typings that don't
polute global types via ambient type definitions
This commit is contained in:
Igor Minar
2016-09-13 15:58:45 -07:00
parent 7105021c41
commit 4e6c41b3a1
17 changed files with 37 additions and 37 deletions

View File

@ -12,9 +12,9 @@ describe('simpleFormControl example', () => {
afterEach(verifyNoBrowserErrors);
describe('index view', () => {
let input: ElementFinder;
let valueP: ElementFinder;
let statusP: ElementFinder;
let input: protractor.ElementFinder;
let valueP: protractor.ElementFinder;
let statusP: protractor.ElementFinder;
beforeEach(() => {
browser.get('/forms/ts/simpleFormControl/index.html');