This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 476
Expand file tree
/
Copy path1-syntax-errors.js
More file actions
44 lines (33 loc) · 1.19 KB
/
1-syntax-errors.js
File metadata and controls
44 lines (33 loc) · 1.19 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
// There are syntax errors in this code - can you fix it to pass the tests?
function addNumbers(a, b, c) {
return (a + b + c);
}
function introduceMe(name, age){
return ("Hello, my name is Sonjide and I am 27 years old");
}
function getTotal(a, b) {
total = (a + b);
return "The total is " + total;
}
addNumbers(3, 4, 6);
introduceMe("Sonjide", 27);
getTotal(23, 5);
/*
===================================================
======= TESTS - DO NOT MODIFY BELOW THIS LINE =====
There are some Tests in this file that will help you work out if your code is working.
To run the tests for just this one file, type `npm test -- --testPathPattern 1-syntax-errors` into your terminal
(Reminder: You must have run `npm install` one time before this will work!)
===================================================
*/
test("addNumbers adds numbers correctly", () => {
expect(addNumbers(3, 4, 6)).toEqual(13);
});
test("introduceMe function returns the correct string", () => {
expect(introduceMe("Sonjide", 27)).toEqual(
"Hello, my name is Sonjide and I am 27 years old"
);
});
test("getTotal returns a string describing the total", () => {
expect(getTotal(23, 5)).toEqual("The total is 28");
});