From 75df5a21488e04f469b1bf5e0e0f49a51c8a5548 Mon Sep 17 00:00:00 2001 From: Binyamin Aron Green Date: Sun, 22 May 2022 12:12:08 -0400 Subject: [PATCH 1/2] Add note to readme, about installing ava globally --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 860210b72..b72ae0dc9 100644 --- a/readme.md +++ b/readme.md @@ -66,6 +66,8 @@ Alternatively you can install `ava` manually: npm install --save-dev ava ``` +Note that AVA 4 cannot be run globally. + Don't forget to configure the `test` script in your `package.json` as per above. ### Create your test file From 5a9b3aff59ae45ba1e99e2c054bfef4e7f2df036 Mon Sep 17 00:00:00 2001 From: Binyamin Aron Green Date: Sun, 19 Jun 2022 19:55:11 -0400 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Mark Wubben --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index b72ae0dc9..d35390e37 100644 --- a/readme.md +++ b/readme.md @@ -66,7 +66,7 @@ Alternatively you can install `ava` manually: npm install --save-dev ava ``` -Note that AVA 4 cannot be run globally. +*Make sure to install AVA locally. As of AVA 4 it can no longer be run globally.* Don't forget to configure the `test` script in your `package.json` as per above.