From 51a0ef028287c4d262cf10c21ec4aa8185eb197a Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Mon, 29 Feb 2016 09:08:18 +0100 Subject: [PATCH] Added info about unit testing --- CONTRIBUTING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 510e24047..10472d115 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,8 +8,10 @@ There are a few preferences regarding code contributions: - Math.js follows the node.js code style as described [here](https://github.com/felixge/node-style-guide). -- Send pull requests to the `develop` branch, not the `master` branch. +- Make sure you properly unit test your changes. +- Before creating a pull request, run the unit tests to make sure they all pass. - Only commit changes done in the source files under `lib`, not to the builds which are located in the folder `dist`. +- Send pull requests to the `develop` branch, not the `master` branch. Thanks!