Skip to content

Commit

Permalink
SDE-171: Fixed linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Antreas Paschalis committed Aug 28, 2019
1 parent 100c56a commit 93f5357
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/calculateUserDailyDigest.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ describe('calculateUserDailyDigest function', () => {
exportedFunctions.sendDailyDigestEmail = jest.fn();

await exportedFunctions.handler(handlerInput);
expect(exportedFunctions.sendDailyDigestEmail).toBeCalledWith(lambdaResult, expect.anything(), expect.anything());
expect(exportedFunctions.sendDailyDigestEmail).toBeCalledWith(
lambdaResult,
expect.anything(),
expect.anything()
);
});
});

0 comments on commit 93f5357

Please sign in to comment.