Lines Matching full:store
121 ## Vuex Store
123 There are two testing strategies for testing a Vuex store, which include testing
124 store parts separately or testing a running store instance. Each strategy has
125 its pros and cons. Given the size of the store and the number of developers that
127 `test store parts separately`.
129 ### Testing Store Parts Separately argument
132 function. Store parts to test include `actions`, `getters`, and `mutations`.
147 Mutations are JavaScript functions that mutate the store state. These are basic
162 ### Testing Store Instance argument
166 - Requires the use of `localVue` when creating the store to avoid leaky tests
190 - [How to unit test a vuex Store](https://www.dev-tips-and-tricks.com/how-to-unit-test-a-vuex-store)