0.0.3 • Published 9 years ago

grunt-mocha-slack-reporter v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

grunt-mocha-slack-reporter


Add to Gruntfile.js :

mochaTest: {
        test: {
            src: ['test/*.js'],
            options: {
                reporter: 'grunt-mocha-slack-reporter',
                timeout : 3000,
                reporterOptions:
                {
                    url: 'https://hooks.slack.com/services/test/test/test',
                    channel: "test",
                    icon_url: "http://test.com/test.png",
                    showPass: false,
                    showFail: false
                }
            },
        },
    },