Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/bot/bot.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ describe('Bot Initialization', () => {
deleteOrders: sinon.stub().resolves(),
calculateEarnings: sinon.stub().resolves(),
attemptCommunitiesPendingPayments: sinon.stub().resolves(),
deleteCommunity: sinon.stub().resolves(),
// deleteCommunity: sinon.stub().resolves(),
nodeInfo: sinon.stub().resolves(),
},
'./modules/community': { configure: sinon.stub() },
Expand Down Expand Up @@ -470,7 +470,7 @@ describe('Bot Initialization', () => {

scheduledFunction();

expect(scheduleStub.scheduleJob.callCount).to.be.equal(8);
expect(scheduleStub.scheduleJob.callCount).to.be.equal(7);
expect(scheduleStub.scheduleJob.getCall(0).args[0]).to.equal(
'*/10 * * * *',
);
Expand Down
Loading