etherpad-lite/tests
Richard Hansen 7df3ded66f lint: Put opening brace on same line as `function`
Normally I would let `eslint --fix` do this for me, but there's a bug
that causes:

    const x = function ()
    {
      // ...
    };

to become:

    const x = ()
    => {
      // ...
    };

which ESLint thinks is a syntax error. (It probably is; I don't know
enough about the automatic semicolon insertion rules to be confident.)
2020-11-24 20:06:12 +00:00
..
backend lint: Put opening brace on same line as `function` 2020-11-24 20:06:12 +00:00
container tests: remove loadSettings.js for backend tests. 2020-04-14 03:36:13 +02:00
frontend lint: Put opening brace on same line as `function` 2020-11-24 20:06:12 +00:00
ratelimit tests: Switch from Travis to Github Actions 2020-11-24 18:12:41 +00:00
README.md tests: backend tests are now run with "npm test" instead of a custom bash script 2018-07-28 23:54:51 +02:00

README.md

About this folder: Tests

Before running the tests, start an Etherpad instance on your machine.

Frontend

To run the frontend tests, point your browser to <yourdomainhere>/tests/frontend

Backend

To run the backend tests, run cd src and then npm test