everyone is welcome to contribute with patches, bug-fixes and new features
- create an issue on github so the community can comment on your idea
- fork
nano
in github - create a new branch
git checkout -b my_branch
- create tests for the changes you made
- make sure you pass both existing and newly inserted tests
- commit your changes
- push to your branch
git push origin my_branch
- 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