[Vuejs]-Bootstrap-Vue throws TypeError in Jest

0👍

This workaround helped me

import { BVPlugin } from "bootstrap-vue";

function createWrapper() {
  return shallowMount(App, {
    global: {
        plugins: [BVPlugin]
    }
  });
}

Leave a comment