UNPKG

217 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Send coverage to codeclimate
5 */
6
7"use strict";
8
9var reporting = require('apeman-dev-commons-reporting');
10
11reporting.reportCodeclimate({
12 'lcov':'coverage/lcov.info'
13}, function(){
14
15});