forked from rlidwka/sinopia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also made a couple wording changes and fixed a typo.
- Loading branch information
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
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 sinopia instance and perform a series of requests to it over http. They are slower than unit tests. | ||
- `integration` - Tests that launch sinopia 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 with `yapm test`. Integration tests are supposed to be executed manually from time to time. | ||
- `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 sinopia instance and perform a series of requests to it over http. They are slower than unit tests. | ||
- `integration` - Tests that launch a sinopia 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. |