Readplace

:white_check_mark: Add test for $3 loan amount · FagnerMartinsBrack/jack-the-moneylender@c582378

GitHub 1 min read
View original
  • current

This article is too short to summarise.

Commit c582378

committed

✅ Add test for $3 loan amount

1 file changed

Lines changed: 7 additions & 0 deletions

Lines changed: 7 additions & 0 deletions

Original file line numberDiff line numberDiff line change

@@ -17,4 +17,11 @@

1717

};

1818

strictEqual({ expected: 0, actual: interestToPayForDollars(2) }, assert);

1919

});

20+
21+

QUnit.test('$3 Loan Amount', (assert) => {

22+

const interestToPayForDollars = () => {

23+

return 0;

24+

};

25+

strictEqual({ expected: 0, actual: interestToPayForDollars(3) }, assert);

26+

});

2027

</script>

0 commit comments

Comments

 (0)