Skip to content

Commit c09a8d0

Browse files
authored
feat: simplify test assertion for iteration 3.2
To allow for the Error to be thrown with any error message, use `toThrow()` without arguments.
1 parent a46ccf2 commit c09a8d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/functions-and-arrays.spec.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,7 @@ describe('Bonus: Calculate the sum', () => {
120120
});
121121

122122
it('should throw an error when unsupported data type (object or array) present in the array', () => {
123-
expect(() => sum([6, 12, 'miami', 1, 'barca', '200', 'lisboa', 8, [], {}])).toThrow(
124-
new Error("Unsupported data type sir or ma'am")
125-
);
123+
expect(() => sum([6, 12, 'miami', 1, 'barca', '200', 'lisboa', 8, [], {}])).toThrow();
126124
});
127125

128126
});

0 commit comments

Comments
 (0)