- Fork this project.
- After you have cloned your forked version navigate into the
clean-code-adventure
folder. - Install node_modules:
$ yarn install
.
- After you successfully cloned the project and installed the node_modules you can run the tests with
$ yarn test
. On the first run of this command all tests should be red. - Navigate in the folder
src/vanilla-js
. Here you can see these 3 folders:algorithms
,array
andobject
. In each folder you can find a.js
and.test.js
file. Only edit the.js
files. - After you are confident that your code is working you can run
$ yarn test
again. - Continue coding until every test is green!
- Make sure all tests are passing by running
$ yarn test
. - Please format your code with your IDE (Visual Studio Code highly recommended).
- At least create a pull request to our repository.
- Wait for our review.
And please don't feel hesitate to contact us if you have any question.