From 5bd0e3ff7101fd2f78555270c5268ed096003154 Mon Sep 17 00:00:00 2001 From: alirezaghey <26653424+alirezaghey@users.noreply.github.com> Date: Sat, 10 Jul 2021 08:05:50 +0200 Subject: [PATCH] fix: correct test commands in contributor docs (#42813) --- docs/how-to-setup-freecodecamp-locally.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how-to-setup-freecodecamp-locally.md b/docs/how-to-setup-freecodecamp-locally.md index b5e151b8bd..359458f422 100644 --- a/docs/how-to-setup-freecodecamp-locally.md +++ b/docs/how-to-setup-freecodecamp-locally.md @@ -471,12 +471,12 @@ A quick reference to the commands that you will need when working locally. | `npm run develop` | Starts the freeCodeCamp API Server and Client Applications. | | `npm run storybook` | Starts Storybook for component library development. | | `npm test` | Run all JS tests in the system, including client, server, lint and challenge tests. | -| `npm run test:client` | Run the client test suite. | +| `npm run test-client` | Run the client test suite. | | `npm run test:curriculum` | Run the curriculum test suite. | | `npm run test:curriculum --block='Basic HTML and HTML5'` | Test a specific Block. | | `npm run test:curriculum --superblock='responsive-web-design'` | Test a specific SuperBlock. | | `npm run test-curriculum-full-output` | Run the curriculum test suite, without bailing after the first error | -| `npm run test:server` | Run the server test suite. | +| `npm run test-server` | Run the server test suite. | | `npm run e2e` | Run the Cypress end to end tests. | | `npm run clean` | Uninstalls all dependencies and cleans up caches. |