There was an error while loading. Please reload this page.
This page explains how development and testing works with Vue.
The Goal of our tests are:
Coverage is not a consideration and shouldn't be of as major a concern with UI tests.
npm run serve
Will hot-load changes to Vue source code on localhost:8080.
localhost:8080
npm run test
will run:
For creating new tests, use npm run test:watch. This will only run changes scene in the unit/ directory.
npm run test:watch
unit/
Tests primarily use:
Any additional functions and mocks created for testing purposes should be located in tests/helpers/.
tests/helpers/
Testing Vuex presents its own challenges. See the following guides:
Vuex