mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
38518baf44
- Check permission in search API - Fix author's name not show in search result |
||
---|---|---|
.. | ||
functional | ||
integration | ||
unit | ||
.eslintrc | ||
mocha.opts | ||
README.md |
All tests are split in three folders:
unit
- Tests that cover functions that transform data in an non-trivial way. These tests simplyrequire()
a few files and run code in there, so they are very fast.functional
- Tests that launch a verdaccio instance and perform a series of requests to it over http. They are slower than unit tests.integration
- Tests that launch a verdaccio instance and do requests to it using npm. They are really slow and can hit a real npm registry.
Unit and functional tests are executed automatically by running npm test
from the project's root directory. Integration tests are supposed to be executed manually from time to time.