robotremote
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -8,3 +8,3 @@ #!/usr/bin/env node | ||
var options = {host: process.argv[2], port: parseInt(process.argv[3], 10) }; | ||
var options = {host: process.argv[2] || 'localhost', port: parseInt(process.argv[3], 10) || 8270}; | ||
var serverString = options.host + ':' + options.port; | ||
@@ -11,0 +11,0 @@ |
@@ -17,3 +17,3 @@ { | ||
], | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"preferGlobal": false, | ||
@@ -20,0 +20,0 @@ "homepage": "https://github.com/comick/node-robotremoteserver", |
@@ -13,3 +13,3 @@ # robotremote | ||
Install [robot framework](http://code.google.com/p/robotframework/wiki/Installation) first. Then: | ||
Install [robot framework](https://github.com/robotframework/robotframework/blob/master/INSTALL.rst) first. Then: | ||
@@ -69,3 +69,3 @@ $ npm install robotremote | ||
* All robot levels are supported including messages with timestamp through timestamp`Level` function. | ||
* See http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.8.5#logging-information | ||
* See http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#logging-information | ||
* | ||
@@ -72,0 +72,0 @@ * @param str1 |
@@ -49,4 +49,4 @@ 'use strict'; | ||
var robot = require('../lib/robotremote'); | ||
var options = { host: process.argv[2], port: parseInt(process.argv[3], 10), timeout: 2000, allowStop: true }; | ||
var options = { host: process.argv[2] || 'localhost', port: parseInt(process.argv[3], 10) || 8270, timeout: 2000, allowStop: true }; | ||
var server = new robot.Server([lib], options); | ||
} |
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
26679