From 86aedfc2ce58f3e913d47136b35cbfc762910edc Mon Sep 17 00:00:00 2001 From: Alec Date: Fri, 25 Feb 2022 21:13:20 -0500 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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