Skip to content

Commit df5c120

Browse files
committed
Use markdown link aliases
1 parent 0a74ec6 commit df5c120

File tree

1 file changed

+45
-26
lines changed

1 file changed

+45
-26
lines changed

README.md

Lines changed: 45 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,24 @@
1616

1717
<br />
1818

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]
2121

2222
<br />
2323

2424
</div>
2525

2626
<hr />
2727

28-
[![Build Status](https://travis-ci.org/testing-library/vue-testing-library.svg?branch=master)](https://travis-ci.org/testing-library/vue-testing-library)&nbsp;&nbsp;
29-
[![Coverage Status](https://img.shields.io/codecov/c/github/testing-library/vue-testing-library.svg)](https://codecov.io/github/testing-library/vue-testing-library)&nbsp;&nbsp;
30-
[![GitHub version](https://badge.fury.io/gh/testing-library%2Fvue-testing-library.svg)](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]
3133

32-
[![npm version](https://badge.fury.io/js/%40testing-library%2Fvue.svg)](https://badge.fury.io/js/%40testing-library%2Fvue)&nbsp;&nbsp;
33-
[![license](https://img.shields.io/github/license/testing-library/vue-testing-library.svg)](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 -->
3437

3538
<h2>Table of Contents</h2>
3639

@@ -103,35 +106,51 @@ it('increments value on click', async () => {
103106
})
104107
```
105108

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].
108112

109113
Some included are:
110114

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]
114119

115-
Feel free to contribute with more!
120+
Feel free to contribute with more examples!
116121

117122
## Docs
118123

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]
121126

122127
## License
123128

124-
MIT
129+
[MIT][license]
125130

126131
## Contributors
127132

128-
[![dfcook](https://avatars0.githubusercontent.com/u/10348212?v=3&s=200)](https://github.com/dfcook)
129-
[![afontcu](https://avatars3.githubusercontent.com/u/9197791?s=200&v=3)](https://github.com/afontcu)
130-
[![eunjae-lee](https://avatars0.githubusercontent.com/u/499898?v=3&s=200)](https://github.com/eunjae-lee)
131-
[![tim-maguire](https://avatars0.githubusercontent.com/u/29452317?v=3&s=200)](https://github.com/tim-maguire)
132-
[![samdelacruz](https://avatars0.githubusercontent.com/u/2040007?v=3&s=200)](https://github.com/samdelacruz)
133-
[![ankitsinghaniyaz](https://avatars0.githubusercontent.com/u/11331989?v=3&s=200)](https://github.com/ankitsinghaniyaz)
134-
[![lindgr3n](https://avatars0.githubusercontent.com/u/24882614?v=3&s=200)](https://github.com/lindgr3n)
135-
[![kentcdodds](https://avatars0.githubusercontent.com/u/1500684?v=3&s=200)](https://github.com/kentcdodds)
136-
[![brennj](https://avatars2.githubusercontent.com/u/29227924?v=3&s=200)](https://github.com/brennj)
137-
[![makeupsomething](https://avatars2.githubusercontent.com/u/7676733?v=3&s=200)](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

Comments
 (0)