Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit d766ddd

Browse files
authored
test(deps): fix webdriver logging entry type (#3026)
1 parent ec2b07e commit d766ddd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/docs/_examples/animations/e2e-spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use strict'; // necessary for es6 output in node
1+
'use strict'; // necessary for es6 output in node
22

33
import { browser, element, by, ElementFinder } from 'protractor';
44
import { logging, promise } from 'selenium-webdriver';
@@ -296,7 +296,7 @@ describe('Animation Tests', () => {
296296
it('fires a callback on start and done', () => {
297297
addActiveHero();
298298
browser.manage().logs().get(logging.Type.BROWSER)
299-
.then((logs: webdriver.logging.Entry[]) => {
299+
.then((logs: logging.Entry[]) => {
300300
const animationMessages = logs.filter((log) => {
301301
return log.message.indexOf('Animation') !== -1 ? true : false;
302302
});

0 commit comments

Comments
 (0)