- VUE TEST UTILS is the official unit testing utility library for Vue.js.
- JEST is a delightful JavaScript Testing Framework with a focus on simplicity.
$ yarn test:unit
# Using global jest command to execute test for header component
$ jest --verbose --no-cache --runTestsByPath #ABSOLUTE_PATH#/tests/components/molecules/Input.spec.js
# Using jest command through node_modules to execute test for header component
./node_modules/jest/bin/jest.js --verbose --no-cache --runTestsByPath #ABSOLUTE_PATH#/test/components/common/header.spec.js