Vue.js2系(typescript)でjest(ts-jest)を使ってテストを書いています
Object style記法
実現したいこと
npm run testを通したい
現状
npm run testで実行すると下記エラーが発生します。
何か型の定義がうまくいってないのかなと見ています。
terminal
1tests/first.test.ts:4:18 - error TS2339: Property 'exists' does not exist on type 'VueConstructor<Vue>'. 2 3 4 expect(Hello.exists()).toBeTruthy() 4 ~~~~~~ 5
各ファイル
firsttestts
1import Hello from "../src/components/HelloWorld.vue"; 2describe('Hello', (): void => { 3 test('Hello test', (): void => { 4 expect(Hello.exists()).toBeTruthy() 5 }); 6})
HelloWorldvue
1<template> 2 <div class="hello"> 3 <h1>{{ msg }}</h1> 4 </div> 5</template> 6 7<script lang="ts"> 8import Vue from "vue"; 9 10export default Vue.extend({ 11 name: "HelloWorld", 12 props: { 13 msg: String, 14 }, 15}); 16</script>
packagejson
1{ 2 "name": "app", 3 "version": "0.1.0", 4 "private": true, 5 "scripts": { 6 "serve": "vue-cli-service serve", 7 "build": "vue-cli-service build", 8 "lint": "vue-cli-service lint", 9 "test": "jest" 10 }, 11 "dependencies": { 12 "core-js": "^3.6.5", 13 "tslib": "^2.2.0", 14 "vue": "^2.6.13" 15 }, 16 "devDependencies": { 17 "@types/jest": "^26.0.23", 18 "@typescript-eslint/eslint-plugin": "^4.26.0", 19 "@typescript-eslint/parser": "^4.26.0", 20 "@vue/cli-plugin-babel": "~4.5.0", 21 "@vue/cli-plugin-eslint": "~4.5.0", 22 "@vue/cli-plugin-typescript": "~4.5.0", 23 "@vue/cli-service": "^4.5.13", 24 "@vue/eslint-config-prettier": "^6.0.0", 25 "@vue/eslint-config-typescript": "^7.0.0", 26 "eslint": "^6.7.2", 27 "eslint-plugin-prettier": "^3.3.1", 28 "eslint-plugin-vue": "^6.2.2", 29 "jest": "^26.6.3", 30 "prettier": "^2.2.1", 31 "ts-jest": "^26.5.0", 32 "typescript": "^4.3.2", 33 "vue-jest": "^3.0.7", 34 "vue-template-compiler": "^2.6.13" 35 }, 36 "jest": { 37 "moduleFileExtensions": [ 38 "ts", 39 "js", 40 "json", 41 "vue" 42 ], 43 "transform": { 44 "^.+\.ts$": "ts-jest" 45 }, 46 "globals": { 47 "ts-jest": { 48 "tsconfig": "tsconfig.json" 49 } 50 }, 51 "testMatch": [ 52 "**/tests/**/*.test.ts" 53 ] 54 } 55} 56
tsconfigjson
1{ 2 "compilerOptions": { 3 "target": "esnext", 4 "module": "esnext", 5 "strict": true, 6 "jsx": "preserve", 7 "importHelpers": true, 8 "moduleResolution": "node", 9 "skipLibCheck": true, 10 "esModuleInterop": true, 11 "allowSyntheticDefaultImports": true, 12 "sourceMap": true, 13 "baseUrl": ".", 14 "types": [ 15 "webpack-env", 16 "jest" 17 ], 18 "paths": { 19 "@/*": [ 20 "src/*" 21 ] 22 }, 23 "lib": [ 24 "esnext", 25 "dom", 26 "dom.iterable", 27 "scripthost" 28 ] 29 }, 30 "include": [ 31 "src/**/*.ts", 32 "src/**/*.tsx", 33 "src/**/*.vue", 34 "tests/**/*.ts", 35 "tests/**/*.tsx" 36 ], 37 "exclude": [ 38 "node_modules" 39 ] 40} 41
babelconfigjson
1module.exports = { 2 presets: ["@vue/cli-plugin-babel/preset"], 3}; 4
下記のどれかが原因と仮説を立てています。
・HelloWorld.vueファイルでのコンポーネント定義に問題があるから、テストファイルで呼び出した時にエラーが表示される?
・テストファイルで呼び出した時に型指定が必要?
・Object style記法が正しくできていないのでエラー
調べたサイト
https://github.com/vuejs/vue-class-component/issues/337
https://qiita.com/jesus_isao/items/0b305c7d90c45ad66c1b#object-style
https://vue-test-utils.vuejs.org/ja/installation/#jest-%E3%82%92%E4%BD%BF%E7%94%A8%E3%81%97%E3%81%9F%E5%8D%98%E4%B8%80%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88%E3%81%AE%E3%83%86%E3%82%B9%E3%83%88
どなたか知見のある方いましたら、ご教授いただきたいです。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。