diff --git a/README.md b/README.md
index 98c100f..584c56b 100644
--- a/README.md
+++ b/README.md
@@ -81,8 +81,11 @@ before serving the application over HTTPS - otherwise it will revert to HTTP. Us
## Testing
-Unit tests are written using Jasmine. Execute them by running `npm run test`.
-They reside in the `spec/unit` directory, which maps 1:1 to the application directory structure - i.e. unit tests for
+Tests are written using Jasmine. End-to-end tests are run using Karma.
+
+Execute unit tests by running `npm run test:unit`. Execute end-to-end tests by running `npm run test:e2e`.
+
+Unit tests map 1:1 to the application directory structure - i.e. unit tests for
`server/modules/GameManager` are found in `spec/unit/server/modules/GameManager_Spec.js`
## Code Formatting