Skip to content
This repository has been archived by the owner on Nov 5, 2018. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 748 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (15 loc) · 748 Bytes

everyone is welcome to contribute with patches, bug-fixes and new features

  1. create an issue on github so the community can comment on your idea
  2. fork nano in github
  3. create a new branch git checkout -b my_branch
  4. create tests for the changes you made
  5. make sure you pass both existing and newly inserted tests
  6. commit your changes
  7. push to your branch git push origin my_branch
  8. create a pull request

to run tests make sure you npm test but also run tests without mocks:

npm run nock_off

check this blogpost to learn more about how to write your own tests