-
Notifications
You must be signed in to change notification settings - Fork 696
Expand file tree
/
Copy pathindex.js
More file actions
41 lines (35 loc) · 1.08 KB
/
index.js
File metadata and controls
41 lines (35 loc) · 1.08 KB
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
31
32
33
34
35
36
37
38
39
40
41
var fork = require("child_process").fork;
var path = require("path");
var fs = require('fs');
var bin = "./node_modules/.bin/istanbul";
var cov = "cover --report=lcov --dir=test/coverage/js _mocha --".split(" ");
if (process.platform === 'win32') {
bin = "./node_modules/mocha/bin/mocha";
cov = [];
}
var args = cov.concat([
"test/runner",
"test/tests",
"--expose-gc",
"--timeout",
"15000"
]);
if (!process.env.APPVEYOR && !process.env.TRAVIS && !process.env.GITHUB_ACTION) {
var local = path.join.bind(path, __dirname);
var dummyPath = local("home");
process.env.HOME = dummyPath;
process.env.USERPROFILE = dummyPath;
}
// unencrypt test keys
function unencryptKey(fileName) {
var base64Contents = fs.readFileSync(
path.join(__dirname, fileName + '.enc'),
'utf8'
);
var asciiContents = Buffer.from(base64Contents, 'base64')
.toString('ascii');
fs.writeFileSync(path.join(__dirname, fileName), asciiContents, 'utf8');
}
unencryptKey('id_rsa');
unencryptKey('nodegit-test-rsa');
fork(bin, args, { cwd: path.join(__dirname, "../") }).on("close", process.exit);