We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07163c9 commit 2c46178Copy full SHA for 2c46178
1 file changed
README.md
@@ -11,14 +11,14 @@ npm install testingbot-api
11
## Using the wrapper
12
13
```javascript
14
-var testingbot = require('testingbot-api');
+var TestingBot = require('testingbot-api');
15
16
-var myAccount = new SauceLabs({
+var tb = new TestingBot({
17
api_key: "your-tb-key",
18
- api_scret: "your-tb-secret"
+ api_secret: "your-tb-secret"
19
});
20
21
-testingbot.getUserInfo(function(err, data) {
+tb.getUserInfo(function(err, data) {
22
console.log(data);
23
24
0 commit comments