From 0925387397b273553dd07a472fb0bada1eb7cea0 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Thu, 22 Dec 2016 10:55:52 +0000 Subject: [PATCH] test(deps): fix webdriver logging entry type --- public/docs/_examples/animations/e2e-spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/_examples/animations/e2e-spec.ts b/public/docs/_examples/animations/e2e-spec.ts index 9e5d72a015..4fba7ec475 100644 --- a/public/docs/_examples/animations/e2e-spec.ts +++ b/public/docs/_examples/animations/e2e-spec.ts @@ -1,4 +1,4 @@ -'use strict'; // necessary for es6 output in node +'use strict'; // necessary for es6 output in node import { browser, element, by, ElementFinder } from 'protractor'; import { logging, promise } from 'selenium-webdriver'; @@ -296,7 +296,7 @@ describe('Animation Tests', () => { it('fires a callback on start and done', () => { addActiveHero(); browser.manage().logs().get(logging.Type.BROWSER) - .then((logs: webdriver.logging.Entry[]) => { + .then((logs: logging.Entry[]) => { const animationMessages = logs.filter((log) => { return log.message.indexOf('Animation') !== -1 ? true : false; });