Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
466 B
13 lines
466 B
// if running on older node, ensure that es6-shim is loaded first
|
|
if (/^v0.10/.test(process.version)) { require('es6-shim'); }
|
|
var assert= require('../assert');
|
|
var cp = require('../child_process');
|
|
|
|
describe('child_process module', function() {
|
|
it ('execFile(true)', function() {
|
|
return cp.execFile('true').promise.then(function(result) {
|
|
assert.equal(result.stdout, '');
|
|
assert.equal(result.stderr, '');
|
|
});
|
|
});
|
|
});
|
|
|