mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
13 lines
431 B
JavaScript
13 lines
431 B
JavaScript
![]() |
var helper = require('./helper.js'),
|
||
|
assert = require('assert'),
|
||
|
fs = require('fs');
|
||
|
|
||
|
helper.create_test('no-cluster-sig', 'no-cluster-sig/test1.js', 'no-cluster-sig/output2', function() {
|
||
|
setTimeout(function() {
|
||
|
helper.check_file("no-cluster-sig/output1");
|
||
|
helper.launch("kill", ['-USR2', fs.readFileSync('process.pid')], null, function(code) {
|
||
|
assert.equal(code, 0);
|
||
|
});
|
||
|
}, 200);
|
||
|
}).export(module);
|