Danny Coates 7d62a23b36 moved integration text execution to docker 6 лет назад
..
backend 18e1609cb3 updated docs 7 лет назад
frontend cfc94fd9af built assets are webpack cacheable 7 лет назад
integration 7d62a23b36 moved integration text execution to docker 6 лет назад
.eslintrc.yml c3751c2efc Ignore console statements in test/ directory because yolo 7 лет назад
readme.md 18e1609cb3 updated docs 7 лет назад

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.