npm install
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)npm test
git push origin my-new-feature
)We use lab and should to write BDD test. Run our test suite with this command:
npm test
We use standard and editorconfig to maintain code style and best practices. Please make sure your PR adheres to the guides by running:
npm run lint