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 e84da29 commit f8bbdf0Copy full SHA for f8bbdf0
Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js
@@ -2,7 +2,7 @@
2
// We will use the same function, but write tests for it using Jest in this file.
3
const getCardValue = require("../implement/3-get-card-value");
4
5
-test("should return 11 for Ace of Spades", () => {
+test("should return 11 for an Ace", () => {
6
const aceofSpades = getCardValue("A♠");
7
expect(aceofSpades).toEqual(11);
8
});
0 commit comments