Skip to content

Commit 608f1db

Browse files
committed
combined tha ace cases in one category
1 parent f231516 commit 608f1db

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,8 @@ const getCardValue = require("../implement/3-get-card-value");
77
// Case 1: Ace (A)
88
test(`Should return 11 when given an ace card`, () => {
99
expect(getCardValue("A♠")).toEqual(11);
10-
});
11-
test(`Should return 11 when given an ace card`, () => {
1210
expect(getCardValue("A♥")).toEqual(11);
13-
});
14-
test(`Should return 11 when given an ace card`, () => {
1511
expect(getCardValue("A♦")).toEqual(11);
16-
});
17-
test(`Should return 11 when given an ace card`, () => {
1812
expect(getCardValue("A♣")).toEqual(11);
1913
});
2014

0 commit comments

Comments
 (0)