Skip to content

Files

Latest commit

ade10e4 · May 21, 2021

History

History
This branch is 2 commits ahead of mozilla/send:master.

test

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 29, 2020
Jul 29, 2020
May 21, 2021
Aug 2, 2019
Nov 20, 2018
Aug 6, 2019
Mar 13, 2019
Oct 4, 2018
Nov 20, 2018
Oct 4, 2018
Oct 4, 2018
Oct 4, 2018

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.