Lines Matching full:unit
1 # Unit Testing
3 The goal of a unit test is to improve code quality and assure future development
8 > Writing unit tests is a constant struggle between writing enough tests and not
9 > writing too many. I call this the unit testing Goldilocks rule—not too many,
18 The OpenBMC Web UI unit test framework uses the Jest test runner and relies on
21 - @vue/cli-plugin-unit-jest
26 - Create the test files in the /tests/unit directory
40 The `test:unit` script will run all the test suites. Until the integration of
48 The `test:unit:debugger` script will help to debug failing tests using the
52 1. Run the unit test in debugger mode
63 The easiest way is to run the unit test in watch mode,
64 `npm run test:unit -- --watch` and verify each snapshot.
98 1. Static components do not need unit tests, use snapshot testing
180 - If there is logic used for creating `RouteLink` items, we should unit test
189 - [Knowing What To Test — Vue Component Unit Testing](https://vuejsdevelopers.com/2019/08/26/vue-wh…
190 - [How to unit test a vuex Store](https://www.dev-tips-and-tricks.com/how-to-unit-test-a-vuex-store)