|
16 | 16 |
|
17 | 17 | <br />
|
18 | 18 |
|
19 |
| -[**Read The Docs**](https://testing-library.com/vue) | |
20 |
| -[Edit the docs](https://github.com/testing-library/testing-library-docs) |
| 19 | +[**Read The Docs**][docs] | |
| 20 | +[Edit the docs][docs-edit] |
21 | 21 |
|
22 | 22 | <br />
|
23 | 23 |
|
24 | 24 | </div>
|
25 | 25 |
|
26 | 26 | <hr />
|
27 | 27 |
|
28 |
| -[](https://travis-ci.org/testing-library/vue-testing-library) |
29 |
| -[](https://codecov.io/github/testing-library/vue-testing-library) |
30 |
| -[](https://badge.fury.io/gh/testing-library%2Fvue-testing-library) |
| 28 | +<!-- prettier-ignore-start --> |
| 29 | +[![Build Status][build-badge]][build] |
| 30 | +[![Coverage Status][coverage-badge]][coverage] |
| 31 | +[![GitHub version][github-badge]][github] |
| 32 | +[![npm version][npm-badge]][npm] |
31 | 33 |
|
32 |
| -[](https://badge.fury.io/js/%40testing-library%2Fvue) |
33 |
| -[](https://img.shields.io/github/license/testing-library/vue-testing-library) |
| 34 | +[![MIT License][license-badge]][license] |
| 35 | +[![Join the community on Spectrum][spectrum-badge]][spectrum] |
| 36 | +<!-- prettier-ignore-end --> |
34 | 37 |
|
35 | 38 | <h2>Table of Contents</h2>
|
36 | 39 |
|
@@ -103,35 +106,51 @@ it('increments value on click', async () => {
|
103 | 106 | })
|
104 | 107 | ```
|
105 | 108 |
|
106 |
| -You'll find examples of testing with different libraries in |
107 |
| -[the test directory](https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__). |
| 109 | + |
| 110 | +You'll find examples of testing with different situations and popular libraries in |
| 111 | +[the test directory][test-directory]. |
108 | 112 |
|
109 | 113 | Some included are:
|
110 | 114 |
|
111 |
| -* [`vuex`](https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__/vuex.js) |
112 |
| -* [`vue-router`](https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__/vue-router.js) |
113 |
| -* [`vee-validate`](https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__/validate-plugin.js) |
| 115 | +* [`vuex`][vuex-example] |
| 116 | +* [`vue-router`][vue-router-example] |
| 117 | +* [`vee-validate`][vee-validate-example] |
| 118 | +* [`vue-i18n`][vue-i18n-example] |
114 | 119 |
|
115 |
| -Feel free to contribute with more! |
| 120 | +Feel free to contribute with more examples! |
116 | 121 |
|
117 | 122 | ## Docs
|
118 | 123 |
|
119 |
| -[**Read The Docs**](https://testing-library.com/vue) | |
120 |
| -[Edit the docs](https://github.com/testing-library/testing-library-docs) |
| 124 | +[**Read The Docs**][docs] | |
| 125 | +[Edit the docs][docs-edit] |
121 | 126 |
|
122 | 127 | ## License
|
123 | 128 |
|
124 |
| -MIT |
| 129 | +[MIT][license] |
125 | 130 |
|
126 | 131 | ## Contributors
|
127 | 132 |
|
128 |
| -[](https://github.com/dfcook) |
129 |
| -[](https://github.com/afontcu) |
130 |
| -[](https://github.com/eunjae-lee) |
131 |
| -[](https://github.com/tim-maguire) |
132 |
| -[](https://github.com/samdelacruz) |
133 |
| -[](https://github.com/ankitsinghaniyaz) |
134 |
| -[](https://github.com/lindgr3n) |
135 |
| -[](https://github.com/kentcdodds) |
136 |
| -[](https://github.com/brennj) |
137 |
| -[](https://github.com/makeupsomething) |
| 133 | + |
| 134 | +<!-- prettier-ignore-start --> |
| 135 | +[build-badge]: https://travis-ci.org/testing-library/vue-testing-library.svg?branch=master |
| 136 | +[build]: https://travis-ci.org/testing-library/vue-testing-library |
| 137 | +[spectrum-badge]: https://withspectrum.github.io/badge/badge.svg |
| 138 | +[spectrum]: https://spectrum.chat/testing-library |
| 139 | +[coverage-badge]: https://img.shields.io/codecov/c/github/testing-library/vue-testing-library.svg |
| 140 | +[coverage]: https://codecov.io/github/testing-library/vue-testing-library |
| 141 | +[github-badge]: https://badge.fury.io/gh/testing-library%2Fvue-testing-library.svg |
| 142 | +[github]: https://badge.fury.io/gh/testing-library%2Fvue-testing-library |
| 143 | +[npm-badge]: https://badge.fury.io/js/%40testing-library%2Fvue.svg |
| 144 | +[npm]: https://badge.fury.io/js/%40testing-library%2Fvue |
| 145 | +[license-badge]: https://img.shields.io/github/license/testing-library/vue-testing-library.svg |
| 146 | +[license]: https://github.com/testing-library/vue-testing-library/blob/master/LICENSE |
| 147 | + |
| 148 | +[docs]: https://testing-library.com/vue |
| 149 | +[docs-edit]: https://github.com/testing-library/testing-library-docs |
| 150 | + |
| 151 | +[test-directory]: https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__ |
| 152 | +[vuex-example]: https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__/vuex.js |
| 153 | +[vue-router-example]: https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__/vue-router.js |
| 154 | +[vee-validate-example]: https://github.com/testing-library/vue-testing-library/tree/master/tests/__tests__/validate-plugin.js |
| 155 | +[vue-i18n-example]: https://github.com/testing-library/vue-testing-library/blob/master/tests/__tests__/vueI18n.js |
| 156 | +<!-- prettier-ignore-end --> |
0 commit comments