From 555c732616cdb09bcad4107d68e2cc1fe9252e33 Mon Sep 17 00:00:00 2001 From: Spencer Greene Date: Mon, 16 Apr 2018 20:46:25 -0400 Subject: [PATCH] doc: fix inconsistency in documentation for building Specifically, fix the inconsistency where the documentation suggests running "$ make test" instead of "$ make -j4 test". The "-j4" flag uses multiple processes, making the command faster. Fixes: https://github.com/nodejs/node/issues/19919 --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index f786412f4b8399..ebdb2d58a833ef 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -176,10 +176,10 @@ If you are running tests prior to submitting a Pull Request, the recommended command is: ```console -$ make test +$ make -j4 test ``` -`make test` does a full check on the codebase, including running linters and +`make -j4 test` does a full check on the codebase, including running linters and documentation tests. Optionally, continue below.