From be2def5fad0e5f5182c8a086244e3d0fe63d43ec Mon Sep 17 00:00:00 2001 From: JC Brand Date: Mon, 27 Apr 2020 18:30:59 +0200 Subject: [PATCH] Docs: Remove out of date section on testing --- README.md | 2 +- docs/source/testing.rst | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 879c0f76a..8af979c35 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ In embedded mode, Converse can be embedded into an element in the DOM. We use behavior-driven tests written with [jasmine.js](https://jasmine.github.io/). -Open [tests/index.html](https://github.com/conversejs/converse.js/blob/master/tests/index.html) in your browser, and the tests will run automatically. +You ran run `make check` to execute all the tests. ## Licence diff --git a/docs/source/testing.rst b/docs/source/testing.rst index e6b5fe1d9..e8a3b2aae 100644 --- a/docs/source/testing.rst +++ b/docs/source/testing.rst @@ -4,9 +4,6 @@ Automated tests Converse uses the `Jasmine `_ testing framework for writing tests. -Tests are run in a browser, either manually or automatically via Chrome -headless. - Adding tests for your bugfix or feature ---------------------------------------- @@ -20,5 +17,3 @@ Running tests Check that all tests complete sucessfully. Run ``make check`` in your terminal. - -To run the tests manually, run ``make serve`` and then open `http://localhost:8000/tests `_ in your browser.