3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

NuxtJS+TypeScriptの開発記録 (3) Vueコンポーネントのテスト時エラー

Posted at

前回までで環境構築が済んだので開発を進めていたが、テストで妙なエラーが出るようになった。

モジュール '@/components/Counter.vue' が見つかりません。

VSCodeのエラー画面

パスにコンポーネントは存在しているし、Nuxtのテストサーバー上で問題なく動作している。また、コンポーネント以外の(モデルクラスなどの)テストは問題ない。

先に結論

  1. テストのファイルをCounter.spec.vueに変更
  2. テストのファイルをVueのSFCに変更
  3. Jestの設定変更

原因(推測)

Jestの設定で、以下のようにtransformを指定している部分がある。

package.json(抜粋)
"jest": {
  "transform": {
    "^.+\\.ts$": "ts-jest",
    ".*\\.(vue)$": "vue-jest"
  }
}

テストファイルCounter.spec.tsのエラーは

  1. .tsなのでts-jestで処理される
  2. .vueファイルをimportしようとする
  3. ts-jest.vueファイルをインポートできない

という流れなのではないか?

前々回で環境を作ったばかりのとき、エラーは起きなかった。その後vue-property-decoratorを使ってクラススタイルで書くようになってから、このようなエラーが起こるようになった気がするが、関係あるのだろうか……?)

対策

原因が推測通りなら、テストファイルもvue-jestで処理されるようにしてしまえばよいはずである。

Counter.spec.tsのファイル名をCounter.spec.vueに変更する。それだけだと文法エラーで怒られるが、以下のようにscriptタグで囲ってやればOK。

Counter.spec.vue
<script lang="ts">
import { mount } from '@vue/test-utils';
import Counter from '@/components/Counter.vue';

describe('Counter', () => {
  test('is a Vue instance', () => {
    const wrapper = mount(Counter);
    expect(wrapper.isVueInstance()).toBeTruthy();
  });
});
</script>

デフォルトだと.vueはテストファイルと認識されないため、Jestの設定を変更する。

package.json(抜粋)
"jest": {
  "testRegex": "(/__tests__/.*|(\\.|/)(spec))\\.(vue|ts)$"
}

JestのtextRegexのデフォルト値(/__tests__/.*|(\\.|/)(test|spec))\\.[jt]sx?$*.spec.ts*.spec.vueが該当するように変更した。

これでVSCode上のエラーも実行時のエラーも消え、無事にテストできるようになった。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?