ライブラリをインストール
1 | # testライブラリ |
test準備
プロジェクトルートディレクトリにjest.config.jsを作成する
※作成しない場合、以下のエラーになった。Consider using the "jsdom" test environment.
1 | module.exports = { |
package.jsonに以下を追加する
※npm test
でテスト実行できるようにするため
1 | "scripts": { |
testコード作成
プロジェクトルートディレクトリに__tests__/unit/index.js
を作成する
1 | import { mount } from "@vue/test-utils"; |
ここまで完了すれば、npm testでテスト実行できる。
と、ここまでは良いのだが、Vue.jsのコードに接続するコードを書くと以下のエラーになった
解決できず、諦めた。。
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){<template>