()
| 63 | const change = new Change(); |
| 64 | const message = 'The total 3 cannot be represented in the given currency.'; |
| 65 | const test = () => { |
| 66 | change.calculate([5, 10], 3); |
| 67 | }; |
| 68 | expect(test).toThrowError(message); |
| 69 | }); |
| 70 |
no test coverage detected