Use Object Spread Syntax (#7777)

* Use Object Spread Syntax

* Nits
This commit is contained in:
Justin Ridgewell
2018-04-23 21:44:27 -04:00
committed by GitHub
parent 037fee8ffb
commit 2afe9404fe
37 changed files with 263 additions and 70 deletions

View File

@@ -20,7 +20,7 @@ if [ -n "$TEST_GREP" ]; then
fi
if [ -n "$TEST_ONLY" ]; then
jestArgs+=("packages/.*$TEST_ONLY.*/test")
jestArgs+=("(packages|codemods)/.*$TEST_ONLY.*/test")
fi
$node node_modules/.bin/jest "${jestArgs[@]}"