0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00

chore: fix typo

This commit is contained in:
Juan Picado @jotadeveloper 2019-07-27 08:38:56 +02:00
parent be7bbe9e60
commit b96445f0c7
No known key found for this signature in database
GPG key ID: 15AA875EF3768142

View file

@ -89,7 +89,7 @@ The `configDefault({}, 'myConfig.yaml)` function is a method that returns a conf
> **The generated object will be used for run your test, not for mock the mock server.**
The `app = await endPointAPI(configForTest);` will trigger the mock server that you are about to run your test with as an uplink. The *mock server* has a static storage which is located `test/unit/partials/mock-store`, if you need add new packages, those must be commited in such file. **Any modification in the mock server might affect other test, since is a shared context**.
The `app = await endPointAPI(configForTest);` will trigger the mock server that you are about to run your test with as an uplink. The *mock server* has a static storage which is located `test/unit/partials/mock-store`, if you need add new packages, those must be commited in such folder. **Any modification in the mock server might affect other test, since is a shared context**.
The `mockRegistry = await mockServer(mockServerPort).init();` mock registry will be used as `uplink`, this is optional, but the most of the test are using this for increase the number of tested scenarios.