Package Exports
- jasmine-slack-reporter
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jasmine-slack-reporter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
jasmine-slack-reporter
Send jasmine2 / protractor results to Slack
Protractor usage:
Add to conf.js file
onPrepare: function() {
var webRep = require('jasmine-slack-reporter');
browser.getProcessedConfig().then(function(config) {
var browserName = config.capabilities.browserName;
jasmine.getEnv().addReporter(new webRep.WebReporter({
projectName:'Project 1',
environment : 'Stage',
slackUrl : 'https://hooks.slack.com/services/ASDF1234/ASDF1234/ABCDEFGHIJKLMNOPQRSTUVWXYZ',
channel : '#testChannel'
}));
});
}
jasmine usage
Create jasmine.js
const Jasmine = require('jasmine');
const webRep = require('jasmine-slack-reporter');
const jasmine = new Jasmine();
jasmine.addReporter(new webRep.WebReporter({
projectName:'Project 1',
environment : 'Stage',
slackUrl : 'https://hooks.slack.com/services/ASDF1234/ASDF1234/ABCDEFGHIJKLMNOPQRSTUVWXYZ',
channel : '#testChannel'
}));
jasmine.loadConfigFile('./spec/support/jasmine.json'); // load jasmine.json configuration
jasmine.execute();Run with node
node jasmine.js