diff --git a/docs/codebase/getting-started.rst b/docs/codebase/getting-started.rst
index 66c0a4acc1601f4daf91e914d16a2e60bea747eb..e1225b7fd9a0854bab22aa6763f9445feebc60f3 100644
--- a/docs/codebase/getting-started.rst
+++ b/docs/codebase/getting-started.rst
@@ -371,6 +371,7 @@ MacOS X uses may want to try `GitX`_.
 Testing Changes
 ===============
 
+.. _development-web-server:
 
 Development Web Server
 ----------------------
diff --git a/docs/codebase/unit-tests/running-tests.rst b/docs/codebase/unit-tests/running-tests.rst
index d2445763d82e65555e323bab93f155cc6007af81..825c5b200560461153983376dfd241dc60340a11 100644
--- a/docs/codebase/unit-tests/running-tests.rst
+++ b/docs/codebase/unit-tests/running-tests.rst
@@ -9,7 +9,26 @@ to make sure you don't break anything. It is important that you run
 these before posting code for review. We also request that new code
 include additions to the unit tests.
 
-You can run the test suite for any of our modules by typing::
+There are two types of tests that can be run: Python and JavaScript.
+
+
+Running JavaScript Unit Tests
+-----------------------------
+
+To run the JavaScript tests, first launch the development web server.
+Instructions on how to do so can be found in the :ref:`getting-started`
+guide, under :ref:`development-web-server`. Once you have launched the
+server, browse to::
+
+    http://localhost:8080/js-tests/
+
+The full JavaScript test suite should then run automatically.
+
+
+Running Python Unit Tests
+-------------------------
+
+You can run the test suite for any of our Python modules by typing::
 
     $ ./tests/runtests.py
 
