Skip to content

Commit 312b092

Browse files
committed
Update 1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js
1 parent 8ab3f10 commit 312b092

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test(`Should return number when given an a face card (>= 2 && < 10)`, () => {
2424
test(`Should return an error for an invalid card`, () => {
2525
expect(getCardValue("2")).toThrowError();
2626
expect(getCardValue("Q")).toThrowError();
27-
// expect(getCardValue("5")).toThrowError();
27+
expect(getCardValue("5")).toThrowError();
2828
});
2929

3030
// Suggestion: Group the remaining test data into these categories:

0 commit comments

Comments
 (0)