r3b / grunt-protractor-coverage

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

#25: Use platform-specific path delimiter when constructing NODE_PATH. #28

Closed tsznuk closed 9 years ago

tsznuk commented 9 years ago

NODE_PATH elements are currently always joined using : as a separator. This causes problems (#25) on windows, where path elements should be separated with ';' instead. This pull request attempts to solve this issue by using path.delimiter as the joining character.

r3b commented 9 years ago

Thanks! I've been meaning to do this for a while.