generated from JoinCODED/TASK-Template
-
Notifications
You must be signed in to change notification settings - Fork 10
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
1b80d35
commit a0c6ac0
Showing
1 changed file
with
17 additions
and
15 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 |
---|---|---|
@@ -1,22 +1,24 @@ | ||
# JS-Functions-Part1 | ||
|
||
|
||
## Instructions | ||
|
||
- Fork and clone [this repository](https://github.com/JoinCODED/TASK-JS-Functions-Part1) to your `Development` folder. | ||
- ````bash | ||
git clone git@github.com:JoinCODED/TASK-JS-Functions-Part1.git | ||
```` | ||
- ```bash | ||
git clone git@github.com:JoinCODED/TASK-JS-Functions-Part1.git | ||
``` | ||
|
||
### Running The Tests | ||
|
||
- Install all the requirements: | ||
1. Navigate to the project root (you'll find a file called `package.json` there). | ||
2. Install the requirments with the following command: | ||
```` bash | ||
npm install | ||
```` | ||
3. Run the tests | ||
```` bash | ||
npm test | ||
``` | ||
4. This command will run the testing file and test your code to make sure it has all the required features. | ||
5. You know you're done when your code passes all the tests! | ||
1. Navigate to the project root (you'll find a file called `package.json` there). | ||
2. Install the requirments with the following command: | ||
```bash | ||
npm install | ||
``` | ||
3. Run the tests | ||
`````bash | ||
npm test | ||
```` | ||
4. This command will run the testing file and test your code to make sure it has all the required features. | ||
5. You know you're done when your code passes all the tests! | ||
````` |