From 06f7b83330070ea26d490017cdbd0ce5183dc479 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Wed, 29 Jan 2020 11:01:33 -0500 Subject: [PATCH] README: improve/correct installation/quick start points --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 084d1b5..2d5ea0d 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,16 @@ ## Test Authoring Quick Start -1. Clone **test262** locally: +- For development of Test262-harness, test authoring & execution: clone **test262** locally: ``` git clone https://github.com/tc39/test262.git --depth 1 cd test262 ``` -2. Install **test262-harness**: +- For development of test authoring & execution: install **test262-harness**: ``` npm install -g test262-harness ``` -3. Run some tests! +- Run some tests! ``` test262-harness test/**/*.js ```