grunt-selenium-server
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "grunt-selenium-server", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Grunt task to start/stop a local Selenium standalon server.", | ||
@@ -5,0 +5,0 @@ "main": "Gruntfile.js", |
@@ -39,3 +39,3 @@ | ||
request(options.downloadUrl).on('response', function (res) { | ||
if(res.statusCode >= 200 && res.statusCode < 300) { | ||
if(res.statusCode > 200 && res.statusCode < 300) { | ||
grunt.fail.fatal(options.downloadUrl + " returns " + res.statusCode); | ||
@@ -42,0 +42,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8715