Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:29 +09:00
commit d918e2eddc
2971 changed files with 264195 additions and 0 deletions

25
node_modules/node-cron/test/task/task-fail-test.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
'use strict';
var expect = require('expect.js');
var sinon = require('sinon');
var cron = require('../../src/node-cron');
describe('scheduling a task with exception', () =>{
beforeEach(() =>{
this.clock = sinon.useFakeTimers();
});
afterEach(() =>{
this.clock.restore();
});
it('should not stop on task exception', () => {
var executed = 0;
cron.schedule('* * * * *', () =>{
executed += 1;
throw 'exception!';
});
this.clock.tick(3000 * 60 + 1);
expect(executed).to.equal(3);
});
});