Skip to content

Commit efc78a8

Browse files
authored
testing
1 parent b34e66c commit efc78a8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Sprint-3/2-practice-tdd/get-ordinal-number.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const getOrdinalNumber = require("./get-ordinal-number");
1313
// Case 1: Numbers ending with 1 (but not 11)
1414
// When the number ends with 1, except those ending with 11,
1515
// Then the function should return a string by appending "st" to the number.
16+
1617
test("should append 'st' for numbers ending with 1, except those ending with 11", () => {
1718
expect(getOrdinalNumber(1)).toEqual("1st");
1819
expect(getOrdinalNumber(21)).toEqual("21st");

0 commit comments

Comments
 (0)