Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jochen-testingbot committed Sep 10, 2024
1 parent 80f62ad commit 59cec6a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 88 deletions.
4 changes: 2 additions & 2 deletions custom_commands/customTestingBotEnd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ exports.command = function(callback) {
const TestingBot = require("testingbot-api");

const tb = new TestingBot({
api_key: process.env.TB_KEY,
api_secret: process.env.TB_SECRET
api_key: process.env.TESTINGBOT_KEY,
api_secret: process.env.TESTINGBOT_SECRET
});

const sessionid = this.capabilities['webdriver.remote.sessionid'],
Expand Down
81 changes: 1 addition & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"author": "TestingBot",
"scripts": {
"test": "npm run single",
"single": "nightwatch --test ./tests/single/single_test.js --env testingbot.chrome",
"parallel": "nightwatch --test ./tests/single/single_test.js --env testingbot.chrome,testingbot.edge,testingbot.firefox"
"single": "nightwatch --test ./tests/single_test.js --env testingbot.chrome",
"parallel": "nightwatch --test ./tests/single_test.js --env testingbot.chrome,testingbot.edge,testingbot.firefox"
},
"license": "MIT",
"repository": {
Expand All @@ -16,9 +16,6 @@
},
"dependencies": {
"testingbot-api": "^1.0.9",
"nightwatch": "3.7.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
"nightwatch": "^3.7.0"
}
}
File renamed without changes.

0 comments on commit 59cec6a

Please sign in to comment.