From 5c45753cd6a9bf1b6142b6226a0d2f8617d25425 Mon Sep 17 00:00:00 2001 From: Noah Lemen Date: Wed, 26 Jul 2017 17:53:46 -0400 Subject: [PATCH] add TEST_GREP example clarification [skip ci] (#6013) --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 126a6eace7..cf9a070e2c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -120,6 +120,12 @@ Use the `TEST_GREP` variable to run a subset of tests by name: $ TEST_GREP=transformation make test ``` +Substitute spaces for hyphens and forward slashes when targeting specific test names: + +```sh +$ TEST_GREP="arrow functions destructuring parameters" make test +``` + To enable the Node.js debugger added in v6.3.0, set the `TEST_DEBUG` environment variable: ```sh