vuex 가입자의 메서드를 어떻게 감시합니까? Vue Component의 created()에서 Vuex 저장소의 Mutation에 가입한 가입자가 있습니다.가입자가 트리거될 때 호출되는 메서드를 염탐하려고 했습니다.이것이 저의 첫 번째 직관적인 시도입니다. //Vue-Component created(){ this.$store.subscribe((mutation) => { if (mutation.type === "mutationname") { this.methodToBeSpiedOn(); } }); } //jest import Component from "..."; ... const setSelectedCompanySpy = jest.spyOn( Component.methods, "methodToBeSpi..