This is a cli utility which runs multiple [checks](./src/checks) on the connector code base to make sure it complies with official Hull Connector standards.
npm install hull-connector-testerThis is a cli utility which runs multiple checks on the connector code base to make sure it complies with official Hull Connector standards.
When any of the check fails the command exits with error code to fail CI job.
The main goal of the tool is to easily enforce specific best standards across wide connectors code base.
You can think of it as code quality check tool, maybe we will even have badges/shields (as http://shields.io/) in future :)
All official Hull connectors run latest version of hull-connector-tester on each CI build.
This is how the Circle CI configuration file (.circleci/config.yml) last step looks like:
```
- run: npm i --no-save --no-cache hull-connector-tester@latest && ./node_modules/.bin/hull-connector-tester
To manually test the Connector code base, the tool should be installed globally and run in connector directory:
`
cd hull-connector-name/
npm i -g --no-cache hull-connector-tester@latest && hull-connector-tester
`
Please review all files in src/checks directory. Each function perform one check and the purpose is descibed in the docblock.
1. Add new file in src/checks directory with the name of the check
2. Create a function taking no arguments and returning true in case of success or string` in case of error with the error message
3. Export this new check in src/checks/index.js
4. Bump version and update CHANGELOG.md