update modules

This commit is contained in:
s2
2020-06-08 08:50:28 +02:00
parent ae4aaf2668
commit 27635904a6
477 changed files with 20385 additions and 35036 deletions

39
node_modules/jake/test/integration/selfdep.js generated vendored Normal file
View File

@@ -0,0 +1,39 @@
let assert = require('assert');
let exec = require('child_process').execSync;
suite('selfDep', function () {
this.timeout(7000);
let origStderrWrite;
setup(function () {
origStderrWrite = process.stderr.write;
process.stderr.write = function () {};
});
teardown(function () {
process.stderr.write = origStderrWrite;
});
test('self dep const', function () {
try {
exec('./node_modules/.bin/jake selfdepconst');
}
catch(e) {
assert(e.message.indexOf('dependency of itself') > -1)
}
});
test('self dep dyn', function () {
try {
exec('./node_modules/.bin/jake selfdepdyn');
}
catch(e) {
assert(e.message.indexOf('dependency of itself') > -1)
}
});
});