Skip to content

Commit ce33cfd

Browse files
committed
Cleanup
1 parent b6fc94f commit ce33cfd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"lint": "./node_modules/.bin/eslint --fix *.js",
99
"build": "ncc build index.js -o dist",
10-
"test": "jest src --notify --config=jest.config.js",
10+
"test": "jest src --config=jest.config.js",
1111
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand src --config=jest.config.js"
1212
},
1313
"devDependencies": {

src/post-message.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ const post = (token, message) => {
1717
return new Promise((resolve, reject) => {
1818
const payload = JSON.stringify(message);
1919

20-
console.log("DEBUG: Payload", payload);
21-
2220
const options = getOptions(token);
2321

2422
const req = https.request(options, (res) => {

0 commit comments

Comments
 (0)