Jest and Vue Util Tests
Vue Test Utils: https://vue-test-utils.vuejs.org
a typical test file includes
wrapper
shallowmount/mount
describe('some condition here',()=>{});
BeforeEach
it('then what will happen',()=>{
//arrange
//act
/assert
});
Last updated
Was this helpful?