I am new to unit testing, for a start I decided to cover all the components with snapshot tests. I’ve set everything up and everything would seem fine, but when I run the npm run unit command, a warning appears 
The tests themselves pass, but it seems to me that because of this warning snapshots are incorrectly stored. Here is the test code
import { mount } from '@vue/test-utils' import Button from '../../components/button.vue' test('renders correctly', () => { const wrapper = mount(Button); expect(wrapper.element).toMatchSnapshot() }) How do I make friends with the jest c Vuetify? help me ...)