forked from JoinCODED/TASK-JS-Arrays
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrayFunctions.spec.js
More file actions
77 lines (70 loc) · 2.17 KB
/
arrayFunctions.spec.js
File metadata and controls
77 lines (70 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/**************************
*
* THIS IS A TESTING FILE
*
* DO NOT MODIFY THIS FILE
*
***************************/
import {
isArrayLengthOdd,
isArrayLengthEven,
addLailaToArray,
eliminateTeam,
secondHalfOfArrayIfItIsEven,
youGottaCalmDown,
} from "./arrayFunctions";
describe("isArrayLengthOdd(numbers)", () => {
test("returns true if numbers has an odd number of elements", () => {
expect(isArrayLengthOdd([1, 2, 3])).toEqual(true);
});
test("returns true if numbers has an odd number of elements", () => {
expect(isArrayLengthOdd([1, 2, 3, 4])).toEqual(false);
});
});
describe("isArrayLengthEven(numbers)", () => {
test("returns true if numbers has an odd number of elements", () => {
expect(isArrayLengthEven([1, 2, 3])).toEqual(false);
});
test("returns true if numbers has an odd number of elements", () => {
expect(isArrayLengthEven([1, 2, 3, 4])).toEqual(true);
});
});
describe("addLailaToArray(tutors)", () => {
test("returns an array equal to the provided one but with 'Laila' at the end", () => {
expect(addLailaToArray(["Mshary", "Hasan"])).toEqual([
"Mshary",
"Hasan",
"Laila",
]);
});
});
describe("eliminateTeam(teams)", () => {
test("returns the last element of the array", () => {
expect(eliminateTeam(["Brazil", "Germany", "Italy"])).toEqual("Italy");
});
});
describe("secondHalfOfArrayIfItIsEven(array)", () => {
test("returns the second half of the array if it has an even number of elements", () => {
expect(
secondHalfOfArrayIfItIsEven(["apple", "orange", "banana", "kiwi"])
).toEqual(["banana", "kiwi"]);
});
test("returns empty array if provided array has an odd number of elements", () => {
expect(
secondHalfOfArrayIfItIsEven([
"apple",
"orange",
"banana",
"kiwi",
"blueberry",
])
).toEqual([]);
});
});
describe("youGottaCalmDown(s)", () => {
test("returns the string `s` with at most one exclamation mark (!) at the end.", () => {
const s = "Gotta Get Tay-Tay Schwifty!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
const res = "Gotta Get Tay-Tay Schwifty!";
expect(youGottaCalmDown(s)).toEqual(res);
});
});