This commit is contained in:
Jonasz Bigda
2023-03-25 21:51:42 +01:00
parent 0db1d5117e
commit b332e9ceb0
1044 changed files with 37502 additions and 63938 deletions

20
node_modules/kareem/test/pre.test.js generated vendored
View File

@@ -287,6 +287,26 @@ describe('execPre', function() {
done();
});
});
it('handles sync errors in pre if there are more hooks', function(done) {
var execed = {};
hooks.pre('cook', function() {
execed.first = true;
throw new Error('Oops!');
});
hooks.pre('cook', function() {
execed.second = true;
});
hooks.execPre('cook', null, function(err) {
assert.ok(err);
assert.ok(execed.first);
assert.equal(err.message, 'Oops!');
done();
});
});
});
describe('execPreSync', function() {