From 01e4eaf0c17c5906a73628576fbe27609ac82618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20C=C3=A1ssio?= Date: Fri, 29 Apr 2022 03:30:57 -0400 Subject: [PATCH] Update CONTRIBUTING.md with additional test installation instrucitons (#23963) * Update test dependency installation instrucitons * keep text more clear --- .github/CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index dc459660746d10..adf1b05be2a825 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -30,6 +30,12 @@ This script will start a local server similar to [threejs.org](https://threejs.o The next most important script runs all the appropriate testing. The E-2-E testing is intended to be run by github actions. +Run this command from the root folder to install test dependencies. + + npm install --prefix test + +And run tests. + npm test The linting is there to keep a consistent code style across all of the code and the testing is there to help catch bugs and check that the code behaves as expected. It is important that neither of these steps comes up with any errors due to your changes.