mirror of
https://github.com/actions/setup-node.git
synced 2025-07-26 08:28:23 +02:00
Use husky
This commit is contained in:
parent
d7b6952411
commit
c3f0a8be66
6685 changed files with 919804 additions and 0 deletions
13
node_modules/pn/test/cp.js
generated
vendored
Normal file
13
node_modules/pn/test/cp.js
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
// 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, '');
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue