istanbul-slack-notify
Version:
Sends nyc (aka: istanbul) coverage summary and git build details to Slack using a pass/fail threshold for project coverage.
27 lines (25 loc) • 505 B
JavaScript
const project = {
projectName: "projectName",
channel: "channel",
username: "username",
icon_emoji: "icon_emoji",
build: {
shortRevision: "shortRevision",
revision: "revision",
date: "date",
subject: "subject",
author: "author",
authorEmail: "authorEmail",
refs: ["ref", "ref1"],
},
coverage: {
statements: 53.62,
branches: 18.75,
lines: 52.24,
functions: 50,
project: "43.65",
threshold: 25,
success: true,
},
};
export {project};