Created
March 12, 2016 11:38
-
-
Save deecewan/e9b8d4f7c52f6bed10fd to your computer and use it in GitHub Desktop.
console.slack tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var slack = require('./console-slack'); | |
slack.options = { | |
webhook : '<redacted>', | |
channel : '#testing-ground', | |
} | |
console.slack('Hello, World!', '#testing-ground', function(resp, status){ | |
console.slack("Response is: " + resp); | |
console.slack("Status is: " + status); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment