Jest and Vue Util Tests

a typical test file includes

wrapper

shallowmount/mount

describe('some condition here',()=>{});

BeforeEach

it('then what will happen',()=>{

//arrange

//act

/assert

});

Last updated