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