Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1 KB

contrib.md

File metadata and controls

37 lines (22 loc) · 1 KB

Development Dependencies

First install the dev dependencies by executing the following command in the repo's directory:

$ npm install

Running Tests

Express uses the Expresso TDD framework to write and run elegant test suites extremely fast. To run all test suites simply execute:

$ make test

To target specific suites we may specify the files via:

$ make test TESTS=test/view.test.js

To check test coverage run:

$ make test-cov

Contributions

To accept a contribution, you should follow these guidelines:

  • All tests must pass
  • Your alterations or additions must include tests
  • Your commit(s) should be focused, do not commit once for several changes
  • Do not alter release information such as the version, or History.md
  • Indents are 2 spaces.

Documentation

To contribute documentation edit the markdown files in ./docs, however do not run make docs, as they will be re-built and published with each release.