Skip to content

Commit

Permalink
fix: add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
onigiri-x authored Feb 6, 2020
1 parent 05c43e1 commit fa7ac9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/procedures/__tests__/ApproveErc20.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ describe('ApproveErc20', () => {
const { approve } = polyTokenMock.getMockInstance();
addTransactionStub.withArgs(approve).returns(approveArgsSpy);

// Real call
await target.prepareTransactions();

// Verifications
Expand Down Expand Up @@ -118,7 +119,8 @@ describe('ApproveErc20', () => {
erc20Mock.mock('approve', Promise.resolve('Approve'));
const { approve } = erc20Mock.getMockInstance();
addTransactionStub.withArgs(approve).returns(approveArgsSpy);


// Real call
await target.prepareTransactions();

// Verifications
Expand Down

0 comments on commit fa7ac9c

Please sign in to comment.