r3b / grunt-protractor-coverage

Coverage analysis for Protractor tests
Apache License 2.0
38 stars 29 forks source link

Bug created by #21 #23

Closed elzes closed 9 years ago

elzes commented 9 years ago

By adding another condition to fix #21

if (code === 1 || code === 100 && keepAlive)

now the condition is wrong and should be:

if ((code === 1 || code === 100) && keepAlive)

r3b commented 9 years ago

I merged in your pull request. Thanks for your help!

r3b commented 9 years ago

Published version 0.2.12 to NPM