Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/B-hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Inside of `exercise.js` there's a line of code that will print "Hello world!".
### 1. Run the program

- Open a terminal window
- Change directory to this folder (`cd B-hello-world`)
- Change directory to this folder (`cd exercises/B-hello-world`) - assuming you're at the project root
- Run the program using node (`node exercise.js`)

### 2. Experiment
Expand Down
2 changes: 1 addition & 1 deletion extra/1-currency-conversion.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function convertToBRL() {}
/* ======= TESTS - DO NOT MODIFY =====
There are some Tests in this file that will help you work out if your code is working.

To run these tests type `npm run extraTo run the tests for just this one file, type `npm run extra-tests -- --testPathPattern 1-syntax-errors` into your terminal
To run the tests for just this one file, type `npm test -- --testPathPattern 1-currency-conversion` into your terminal
(Reminder: You must have run `npm install` one time before this will work!)
*/

Expand Down
2 changes: 1 addition & 1 deletion extra/2-piping.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let goodCode =
/* ======= TESTS - DO NOT MODIFY =====
There are some Tests in this file that will help you work out if your code is working.

To run these tests type `npm run extraTo run the tests for just this one file, type `npm run extra-tests -- --testPathPattern 2-piping` into your terminal
To run the tests for just this one file, type `npm test -- --testPathPattern 2-piping` into your terminal
(Reminder: You must have run `npm install` one time before this will work!)
*/

Expand Down
2 changes: 1 addition & 1 deletion extra/3-magic-8-ball.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function checkAnswer(answer) {

There are some Tests in this file that will help you work out if your code is working.

To run these tests type `npm run extraTo run the tests for just this one file, type `npm run extra-tests -- --testPathPattern 3-magic-8-ball` into your terminal
To run the tests for just this one file, type `npm test -- --testPathPattern 3-magic-8-ball` into your terminal
(Reminder: You must have run `npm install` one time before this will work!)
==================================
*/
Expand Down