blob: 042155659de1f15833ea33cb95fec498639685ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
'use strict';
const request = require('request');
const index = require('..');
const sendToCoveralls = (obj, cb) => {
let urlBase = 'https://coveralls.io';
if (process.env.COVERALLS_ENDPOINT) {
urlBase = process.env.COVERALLS_ENDPOINT;
}
const str = JSON.stringify(obj);
const url = `${urlBase}/api/v1/jobs`;
if (index.options.stdout) {
process.stdout.write(str);
cb(null, { statusCode: 200 }, '');
} else {
request.post({
url,
form: {
json: str
}
}, (err, response, body) => {
cb(err, response, body);
});
}
};
module.exports = sendToCoveralls;
|