Welcome to the Vue Testing Handbook!
This is a collection of short, focused examples on how to test Vue components. It uses vue-test-utils
, the official library for testing Vue components, and Jest, a modern testing framework. It covers the vue-test-utils
API, as well as best practises and useful parts of the Jest API for testing Vue components, as well an a demo project with all the example code.
Most sections have have a simple component or two, some tests, and the related code. Here is an example
- Setting up for TDD. This is a guide about setting up an environment for TDD.
- Component. This is the component usd in the guide.
- Test. This is the test used in the guide.
Guides should be short, concise, and focused on a single concept. The relevant code should be linked in the article, and easily reproduced by the reader.
We are aiming to support Japanese and English for now.
Vuepress is used to generate the static website. Articles are written in markdown.
Clone the repo and run yarn
to install the dependencies. Then run yarn dev
to open the dev server. Access it on localhost:8080
.
There is an example project to run tests and examples used in the guides. To run it the demo app, run cd demo-app
to navigate into the project, then run yarn
to install the dependencies. Run yarn test:unit
to execute the test suite.
Make an issue regarding what you think can be improved, or just make a PR.
Make an issue explaining the benefit of the new page. You should also add any relevant code and tests in the demo-app
project, so readers can easily recreate the scenario.
Vueテスティングハンドブックへようこそ!
このガイドはVueコンポーネントをどのようにテストし、どう使用するのかを簡単な例と共に紹介します。
コンポーネントをテストする更新ライブラリーのvue-test-utils
とモダンテストフレームワークのJest
を使います。
vue-test-utils
のAPIとコンポーネントのテストのベストプラクティスを紹介します。
よく使うJestのAPIも合わせて紹介します。
Most sections have have a simple component or two, some tests, and the related code. Here is an example
英語と日本語をサポートします。
- コマンド
git clone [email protected]:lmiller1990/vue-testing-handbook.git
- コマンド
yarn install
- コマンド
yarn dev
- ブラウザからアクセス
localhost:8080
- コマンド
ctrl + c
ガイドに使うテストのデモプロジェクトもあります。
- コマンド
cd demo-app
- コマンド
yarn install
- コマンド
yarn test:unit
Issueを切って、それかPRを出します。レビューします。
課題を作って、新しいページの価値を説明してください。
demo-app
プロジェクトにも書いたコードの例を追加してください。
そうすると、ガイドが説明した内容を簡単に再現できます。