forked from HackYourFuture/Assignments
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32c40e3
commit 494713f
Showing
11 changed files
with
106 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Test Summary | ||
|
||
**Mentors**: For more information on how to review homework assignments, please refer to the [Review Guide](https://github.com/HackYourFuture/mentors/blob/main/assignment-support/review-guide.md). | ||
|
||
### 1-JavaScript - Week3 | ||
|
||
| Exercise | Passed | Failed | ESLint | | ||
|----------------------------|--------|--------|--------| | ||
| ex1-doubleEvenNumbers.test | 1 | - | ✕ | | ||
| ex2-mondaysWorth.test | 2 | - | ✕ | | ||
| ex3-lemonAllergy.test | 3 | - | ✕ | | ||
| ex4-observable | 3 | - | ✕ | | ||
| ex5-wallet | 5 | - | ✕ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
1-JavaScript/Week3/test-reports/ex1-doubleEvenNumbers.test.report.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
*** Unit Test Error Report *** | ||
|
||
PASS 1-JavaScript/Week3/assignment/ex1-doubleEvenNumbers.test.js | ||
js-wk3-ex1-doubleEvenNumbers | ||
✅ doubleEvenNumbers should take the even numbers and double them (2 ms) | ||
|
||
Test Suites: 1 passed, 1 total | ||
Tests: 1 passed, 1 total | ||
Snapshots: 0 total | ||
Time: 0.379 s, estimated 1 s | ||
Ran all test suites matching /C:\\Users\\rektozarius\\samuel\\main\\Assignments-cohort51\\1-JavaScript\\Week3\\assignment\\ex1-doubleEvenNumbers.test.js/i. | ||
No linting errors detected. | ||
No spelling errors detected. |
14 changes: 14 additions & 0 deletions
14
1-JavaScript/Week3/test-reports/ex2-mondaysWorth.test.report.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*** Unit Test Error Report *** | ||
|
||
PASS 1-JavaScript/Week3/assignment/ex2-mondaysWorth.test.js | ||
js-wk3-mondaysWorth | ||
✅ computeEarnings should take two parameters (1 ms) | ||
✅ computeEarnings should compute the earnings as a formatted Euro amount | ||
|
||
Test Suites: 1 passed, 1 total | ||
Tests: 2 passed, 2 total | ||
Snapshots: 0 total | ||
Time: 0.389 s, estimated 1 s | ||
Ran all test suites matching /C:\\Users\\rektozarius\\samuel\\main\\Assignments-cohort51\\1-JavaScript\\Week3\\assignment\\ex2-mondaysWorth.test.js/i. | ||
No linting errors detected. | ||
No spelling errors detected. |
15 changes: 15 additions & 0 deletions
15
1-JavaScript/Week3/test-reports/ex3-lemonAllergy.test.report.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
*** Unit Test Error Report *** | ||
|
||
PASS 1-JavaScript/Week3/assignment/ex3-lemonAllergy.test.js | ||
js-wk3-ex3-lemonAllergy | ||
✅ sanitizeFruitBasket should take two parameters (1 ms) | ||
✅ sanitizeFruitBasket should not modify the original `fruitBasket` array (1 ms) | ||
✅ sanitizeFruitBasket should return a new array that does not include the unwanted `lemon` | ||
|
||
Test Suites: 1 passed, 1 total | ||
Tests: 3 passed, 3 total | ||
Snapshots: 0 total | ||
Time: 0.39 s, estimated 1 s | ||
Ran all test suites matching /C:\\Users\\rektozarius\\samuel\\main\\Assignments-cohort51\\1-JavaScript\\Week3\\assignment\\ex3-lemonAllergy.test.js/i. | ||
No linting errors detected. | ||
No spelling errors detected. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
*** Unit Test Error Report *** | ||
|
||
PASS 1-JavaScript/Week3/assignment/ex4-observable/ex4-observable.test.js | ||
js-wk3-ex4-observable | ||
✅ createObservable should exist and be a function (1 ms) | ||
✅ createObservable should return an object with `subscribe` and a `notify` function properties | ||
✅ observable should notify all subscribers of any notification (1 ms) | ||
|
||
Test Suites: 1 passed, 1 total | ||
Tests: 3 passed, 3 total | ||
Snapshots: 0 total | ||
Time: 0.409 s | ||
Ran all test suites matching /C:\\Users\\rektozarius\\samuel\\main\\Assignments-cohort51\\1-JavaScript\\Week3\\assignment\\ex4-observable\\ex4-observable.test.js/i. | ||
No linting errors detected. | ||
No spelling errors detected. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
*** Unit Test Error Report *** | ||
|
||
PASS .dist/1-JavaScript/Week3/unit-tests/ex5-wallet.test.js | ||
js-wk3-ex5-wallet | ||
✅ q1: At line 24, which variables are in the scope marked Closure? (1 ms) | ||
✅ q2: What is in the Call Stack, from top to bottom? | ||
✅ q3: What tooltip appears when hovering over the third debug button? | ||
✅ q4: What is displayed in the console? | ||
✅ q5: The owner of the wallet with insufficient funds is? | ||
|
||
Test Suites: 1 passed, 1 total | ||
Tests: 5 passed, 5 total | ||
Snapshots: 0 total | ||
Time: 0.38 s, estimated 1 s | ||
Ran all test suites matching /C:\\Users\\rektozarius\\samuel\\main\\Assignments-cohort51\\.dist\\1-JavaScript\\Week3\\unit-tests\\ex5-wallet.test.js/i. | ||
No linting errors detected. | ||
No spelling errors detected. |