-
-
Notifications
You must be signed in to change notification settings - Fork 240
Manchester |25-ITP-Sep|Mahtem T. Mengstu |Sprint 3|coursework/sprint-3-implement-and-rewrite #851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 11 commits
f723809
ac08757
2c28a87
5d979ed
5f2e946
ba5537d
26e660e
4930742
c68a37c
b57c404
0a1ed8c
9abc5a9
608a309
b0eefec
6041f59
e84da29
f8bbdf0
2934b0e
74b4cc1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,24 @@ test("should return 11 for Ace of Spades", () => { | |
| }); | ||
|
|
||
| // Case 2: Handle Number Cards (2-10): | ||
| test("should number cards for (2-10)", () => { | ||
| const aceofSpades = getCardValue("6♠"); | ||
| expect(aceofSpades).toEqual(6); | ||
| }); | ||
cjyuan marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| // Case 3: Handle Face Cards (J, Q, K): | ||
| test("should return 10 for face cards", () => { | ||
| const aceofSpades = getCardValue("Q♠"); | ||
| expect(aceofSpades).toEqual(10); | ||
| }); | ||
| // Case 4: Handle Ace (A): | ||
| // test("should return 11 for Ace of Spades", () => { | ||
| // const aceofSpades = getCardValue("A♠"); | ||
| // expect(aceofSpades).toEqual(11); | ||
| // }); | ||
|
Comment on lines
+28
to
+31
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good, that's right, I have removed misleading description. and changed it. |
||
| // Case 5: Handle Invalid Cards: | ||
| test("should throw an error for invalid cards", () => { | ||
| expect(() => getCardValue("Z♠")).toThrow("Invalid Card"); | ||
| }); | ||
| // Sprint-3 rewrite-tests-with-jest/2-get-card-value.test.js. rewrote tests using jest | ||
| // Few modifications done. | ||
Uh oh!
There was an error while loading. Please reload this page.