We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f231516 commit 608f1dbCopy full SHA for 608f1db
Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js
@@ -7,14 +7,8 @@ const getCardValue = require("../implement/3-get-card-value");
7
// Case 1: Ace (A)
8
test(`Should return 11 when given an ace card`, () => {
9
expect(getCardValue("A♠")).toEqual(11);
10
-});
11
-test(`Should return 11 when given an ace card`, () => {
12
expect(getCardValue("A♥")).toEqual(11);
13
14
15
expect(getCardValue("A♦")).toEqual(11);
16
17
18
expect(getCardValue("A♣")).toEqual(11);
19
});
20
0 commit comments