Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Nov 6, 2024
1 parent 797cb49 commit 0c0c940
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"oplog_populator": "node extensions/oplogPopulator/OplogPopulatorTask.js",
"mongo_queue_processor": "node extensions/mongoProcessor/mongoProcessorTask.js",
"garbage_collector": "node extensions/gc/service.js",
"test": "mocha --recursive tests/unit --timeout 30000",
"test": "mocha --recursive tests/unit --timeout 60000",
"cover:test": "nyc --clean --silent yarn run test && nyc report --report-dir ./coverage/test --reporter=lcov",
"ft_test": "mocha --recursive $(find tests/functional -name '*.js') --timeout 30000",
"ft_test:notification": "mocha --recursive $(find tests/functional/notification -name '*.js') --timeout 30000",
Expand Down
6 changes: 6 additions & 0 deletions tests/functional/replication/queueProcessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -880,10 +880,16 @@ describe('queue processor functional tests with mocking', () => {
after(done => {
httpServer.close();
async.parallel([
/* eslint-disable no-console */
done => queueProcessorSF.stop(done),
console.log('queueProcessorSF stopped'),
done => queueProcessorAzure.stop(done),
console.log('queueProcessorAzure stopped'),
done => replicationStatusProcessor.stop(done),
console.log('replicationStatusProcessor stopped'),
done => copyLocationResultsConsumer.close(done),
console.log('copyLocationResultsConsumer stopped'),
/* eslint-disable no-console */
], done);
});

Expand Down

0 comments on commit 0c0c940

Please sign in to comment.