From 384f500d4c908bc4416a7e06a21480d3c49a19cd Mon Sep 17 00:00:00 2001 From: Eric Schrijver Date: Sun, 1 Sep 2013 11:22:03 +0200 Subject: [PATCH] Clarify how to access tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add @marcelklehr’s clarification in https://github.com/ether/etherpad-lite/issues/1859 --- CONTRIBUTING.md | 3 +++ tests/README.md | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 tests/README.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e185d9c56..74aa8b3f4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,3 +63,6 @@ The docs are in the `doc/` folder in the git repository, so people can easily fi Documentation should be kept up-to-date. This means, whenever you add a new API method, add a new hook or change the database model, pack the relevant changes to the docs in the same pull request. You can build the docs e.g. produce html, using `make docs`. At some point in the future we will provide an online documentation. The current documentation in the github wiki should always reflect the state of `master` (!), since there are no docs in master, yet. + +## Testing +Front-end tests are found in the `tests/frontend/` folder in the repository. Run them by pointing your browser to `/tests/frontend`. \ No newline at end of file diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 000000000..1851305f8 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,5 @@ +# About this folder: Tests + +## Frontend + +To run the tests, point your browser to `/tests/frontend`