From 679d2d8982105f4a57753a23a3cf603face19bbe Mon Sep 17 00:00:00 2001 From: sdras Date: Tue, 6 Mar 2018 23:31:21 +0000 Subject: [PATCH] Clariy unit testing resources --- src/v2/guide/unit-testing.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/v2/guide/unit-testing.md b/src/v2/guide/unit-testing.md index 615669089c..63d0d30d73 100644 --- a/src/v2/guide/unit-testing.md +++ b/src/v2/guide/unit-testing.md @@ -130,3 +130,5 @@ it('updates the rendered message when vm.message updates', done => { ``` We are planning to work on a collection of common test helpers to make it easier to render components with different constraints (e.g. shallow rendering that ignores child components) and assert their output. + +For more in-depth information on unit testing in vue, check out [vue-test-utils](https://vue-test-utils.vuejs.org/en/) and our cookbook entry about [unit testing vue components](https://vuejs.org/v2/cookbook/unit-testing-vue-components.html).