verdaccio/test
Ayush Sharma b605d1ed7e fix: notification for multiple endpoints
add silent fail case for notification promise
2017-12-15 08:08:16 +05:30
..
functional fix: notification for multiple endpoints 2017-12-15 08:08:16 +05:30
integration [GH-131] add cache option to uplinks 2017-06-08 17:59:28 +02:00
unit test: Increase coverage for local-data storage 2017-08-26 07:44:18 +02:00
.eslintrc fix: eslint globally read all files, rename jsx to js. Reduce amount of repeated configuration 2017-07-18 21:14:12 +02:00
README.md renaming 'sinopia' to verdaccio. 2016-11-07 12:15:38 -05:00
mocha.opts refactor: restore default time out to 20s 2017-08-06 22:04:35 +02:00

README.md

All tests are split in three folders:

  • unit - Tests that cover functions that transform data in an non-trivial way. These tests simply require() 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.