From 4b20afbd1591ef8c52f4eaffc7f4521242c73740 Mon Sep 17 00:00:00 2001 From: Jon de la Motte Date: Mon, 13 Oct 2014 12:51:35 -0700 Subject: [PATCH] Fix a typo in the test/README.md Also made a couple wording changes and fixed a typo. --- test/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/README.md b/test/README.md index e39499955..400dcded0 100644 --- a/test/README.md +++ b/test/README.md @@ -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.