browserstack-workers
Advanced tools
Comparing version 0.2.3 to 0.2.4
@@ -7,2 +7,3 @@ function Browser(options) { | ||
this.os_version = options.os_version || null; | ||
this.timeout = options.timeout || 30; | ||
} | ||
@@ -17,3 +18,3 @@ | ||
} else { | ||
return this[key].toLowerCase() === other[key].toLowerCase(); | ||
return this[key] === other[key]; | ||
} | ||
@@ -20,0 +21,0 @@ }, this); |
@@ -32,3 +32,3 @@ var Browser = require('./browser'), | ||
if (remoteBrowser.equals(browser)) { | ||
this.browsers.push(remoteBrowser); | ||
this.browsers.push(browser); | ||
found = true; | ||
@@ -35,0 +35,0 @@ } |
{ | ||
"name": "browserstack-workers", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "A library for creating workers on BrowserStack and retrieving results", | ||
@@ -5,0 +5,0 @@ "main": "lib/client.js", |
13793
325