2019-06-01から1ヶ月間の記事一覧

unknown mutation type: test/update

テスト作成中に上記エラー。 Nuxt.js 2.4.0 jest 23.6.0 node v11.2.0 Vuex 3.1.1 これは、Vuexを使用する時、モジュールモード を使用したんだけど、そうすると名前空間が分割されるというのがテスト時に再現できていなかったので発生したみたい。 vuex.vue…

Multiple instances of Vue detected

Nuxt.jsを使ったアプリでComponentのテストを作成したところ、表題のエラーとなった。 Nuxt.js 2.4.0 jest 23.6.0 node v11.2.0 vuetify1.3.14 import { mount, shallowMount, createLocalVue } from '@vue/test-utils' import Test from '@/components/Test…

名前付きインポートの場合は分割代入しなければならない

下記のようなテストを書いたら、undefinedとなった import mutations from '@/store/resume.js' test('object check', () => { expect(mutations).toBeTruthy(); // undefined }) これは、importしているmutationsを分割代入していないのが原因だった jsprim…