Running jest with bootstrap-vue

前端 未结 3 1341
半阙折子戏
半阙折子戏 2021-02-07 07:12

I\'ve been working with vuejs and bootstrap-vue lately. Decided to add unit testing to my project.

I\'m not realy familiar with unit testing so I\'m trying anything I cou

3条回答
  •  伪装坚强ぢ
    2021-02-07 07:51

    It is also possible to stub components like

    const wrapper = mount(Login, {
      mocks: {
        $t: () => 'Connexion' // i18N
      },
      stubs: {
        BCol: true
      }
    });
    

提交回复
热议问题