From afbd7e16160d8eb5c3c8547c8ff3d466a94281d3 Mon Sep 17 00:00:00 2001 From: Eliran Pe'er Date: Thu, 19 Jul 2018 18:28:10 +0300 Subject: [PATCH] docs: Change jest to mocha in Nodejs init README (#564) --- .../{{cookiecutter.project_name}}/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samcli/local/init/templates/cookiecutter-aws-sam-hello-nodejs/{{cookiecutter.project_name}}/README.md b/samcli/local/init/templates/cookiecutter-aws-sam-hello-nodejs/{{cookiecutter.project_name}}/README.md index 181cfcd428..3ff8cce757 100644 --- a/samcli/local/init/templates/cookiecutter-aws-sam-hello-nodejs/{{cookiecutter.project_name}}/README.md +++ b/samcli/local/init/templates/cookiecutter-aws-sam-hello-nodejs/{{cookiecutter.project_name}}/README.md @@ -109,7 +109,7 @@ aws cloudformation describe-stacks \ ## Testing -We use `jest` for testing our code and it is already added in `package.json` under `scripts`, so that we can simply run the following command to run our tests: +We use `mocha` for testing our code and it is already added in `package.json` under `scripts`, so that we can simply run the following command to run our tests: ```bash cd hello_world