mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 23:26:48 +08:00
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
const kue = require('../services/kue');
|
|
|
|
beforeEach(() => {
|
|
|
|
// Empty the test tasks before finishing.
|
|
kue.TestQueue.splice(0, kue.TestQueue.length);
|
|
});
|