[Vuejs]-How can I know what percentage is covered by my tests?

3👍

Your error is

bash: jest: command not found

Which means jest isn’t added to your project/installed. Install it with: npm install --save-dev jest.

More information about jest

Leave a comment