node-browserstack
Version:
Deprecated. Use the browserstack module instead.
12 lines (10 loc) • 338 B
JavaScript
var TestClient = require('./testclient'),
ScreenshotClient = require('./screenshotclient');
module.exports = {
createTestClient: function (username, password) {
return new TestClient(username, password);
},
createScreenshotClient: function (username, password) {
return new ScreenshotClient(username, password);
}
};