Skip to content

Commit c8cef50

Browse files
Implement the change to return the Numeric Value.
1 parent 0866294 commit c8cef50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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
@@ -11,7 +11,7 @@ test(`Should return 11 when given an ace card`, () => {
1111

1212
// Suggestion: Group the remaining test data into these categories:
1313
// Number Cards (2-10)
14-
test("Should return the correct value for number cards", () => {
14+
test("Should return the numeric value for number cards", () => {
1515
expect(getCardValue("2♠")).toEqual(2);
1616
expect(getCardValue("10♦")).toEqual(10);
1717
});

0 commit comments

Comments
 (0)