timvisee 073accfe65 Revert "Update eslint & plugins" 1 year ago
..
backend 5a70362b79 Fix: AWS.config is a stub. 4 years ago
frontend 073accfe65 Revert "Update eslint & plugins" 1 year ago
integration 3165086869 Remove legal page, add no affiliation text in footer 3 years ago
.eslintrc.yml 073accfe65 Revert "Update eslint & plugins" 1 year ago
readme.md 1e62aa976d reimplemented l10n using dynamic import() (#1012) 5 years ago
testServer.js 527040afef updated ws dependency and slightly improved client side error handling, hung uploads will error instead of hang forever 4 years ago
wdio.circleci.conf.js 073accfe65 Revert "Update eslint & plugins" 1 year ago
wdio.common.conf.js 55344f8a9d Drop mkdirp 1 year ago
wdio.docker.conf.js 073accfe65 Revert "Update eslint & plugins" 1 year ago
wdio.local.conf.js 073accfe65 Revert "Update eslint & plugins" 1 year ago
wdio.remote.config.js 76de2b29a5 cleaned up integration test flow 5 years ago
wdio.saucelabs.config.js 76de2b29a5 cleaned up integration test flow 5 years ago

readme.md

Tests

To run all the tests use npm test. This will run the tests and produce a code coverage report at coverage/index.html. The full test suite is run as a hook on each git push. Mocha is our preferred test runner.

Frontend

Unit tests reside in test/frontend/tests.

Frontend tests can be ran in the browser by running npm start and then browsing to http://localhost:8080/test. Doing it this way will watch for changes and rerun the suite automatically.

You can also run them in headless Chrome by using npm run test:frontend. The results will be printed to the console.

Backend

Unit tests reside in test/backend

Backend test can be run with npm run test:backend. Sinon and proxyquire are used for mocking.

Integration

Integration tests include UI tests that run with Selenium.

The preferred way to run these locally is with npm run test-integration which requires docker. To watch the tests connect with VNC. On mac enter vnc://localhost:5900 in Safari and use the password secret to connect. For info on debugging a test see the wdio debug docs.