scrimba
Learn Vuex
Test Vuex Mutations, Actions and Getters with Mocha and Chai
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Test Vuex Mutations, Actions and Getters with Mocha and Chai
AboutCommentsNotes
Test Vuex Mutations, Actions and Getters with Mocha and Chai
Expand for more info
index.js
run
preview
console
import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);

const store = new Vuex.Store({
state: {
count: 0 ,
products: [
{ id: 1, title: 'Apple', category: 'fruit' },
{ id: 2, title: 'Orange', category: 'fruit' },
{ id: 3, title: 'Carrot', category: 'vegetable' }
]
},
mutations: {
increment (state) { state.count++ }
}
})



// Testing
mocha.setup('bdd');
let assert = chai.assert;
let expect = chai.expect;

mocha.run();
Console
"Download the Vue Devtools extension for a better development experience: https://github.com/vuejs/vue-devtools"
,
"You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See more tips at https://vuejs.org/guide/deployment.html"
,
index.html
-7:14