|
| 1 | +# Introduction |
| 2 | + |
| 3 | +Vue Test Utils est la bibliothèque officielle de tests unitaires pour Vue.js. |
| 4 | + |
| 5 | +Voici la documentation de Vue Test Utils v1, qui vise Vue 2 et les versions antérieures. |
| 6 | + |
| 7 | +En bref : |
| 8 | + |
| 9 | +- [Vue Test Utils 1](https://github.com/vuejs/vue-test-utils/) ciblant [Vue 2](https://github.com/vuejs/vue/). |
| 10 | +- [Vue Test Utils 2](https://github.com/vuejs/vue-test-utils-next/) ciblant [Vue 3](https://github.com/vuejs/vue-next/). |
| 11 | + |
| 12 | + <div class="vueschool"><a href="https://vueschool.io/courses/learn-how-to-test-vuejs-components?friend=vuejs" target="_blank" rel="sponsored noopener" title="Learn how to use Vue Test Utils to test Vue.js Components with Vue School">Apprenez comment tester les composants de Vue.js avec Vue School</a></div> |
| 13 | + |
| 14 | +- [Installation](./installation/) |
| 15 | +- [Guides](./guides/) |
| 16 | + - [Pour commencer](./guides/getting-started.md) |
| 17 | + - [Les Conseils pratiques](guides/common-tips.md) |
| 18 | + - [Test des touches, de la souris et d'autres événements DOM](guides/dom-events.md) |
| 19 | + - [Tester le comportement asynchrone](guides/testing-async-components.md) |
| 20 | + - [Utilisation avec TypeScript](guides/using-with-typescript.md) |
| 21 | + - [Utilisation avec Vue Router](guides/using-with-vue-router.md) |
| 22 | + - [Utilisation avec Vuex](guides/using-with-vuex.md) |
| 23 | + - [Bibliothèques utiles pour les tests](guides/useful-libraries-for-testing.md) |
| 24 | +- [API](api/) |
| 25 | + - [mount](api/mount.md) |
| 26 | + - [shallowMount](api/shallowMount.md) |
| 27 | + - [render](api/render.md) |
| 28 | + - [renderToString](api/renderToString.md) |
| 29 | + - [Mounting Options](api/options.md) |
| 30 | + - [context](api/options.md#context) |
| 31 | + - [slots](api/options.md#slots) |
| 32 | + - [scopedSlots](api/options.md#scopedslots) |
| 33 | + - [stubs](api/options.md#stubs) |
| 34 | + - [mocks](api/options.md#mocks) |
| 35 | + - [localVue](api/options.md#localvue) |
| 36 | + - [attachToDocument](api/options.md#attachtodocument) |
| 37 | + - [attrs](api/options.md#attrs) |
| 38 | + - [propsData](api/options.md#propsdata) |
| 39 | + - [listeners](api/options.md#listeners) |
| 40 | + - [parentComponent](api/options.md#parentComponent) |
| 41 | + - [provide](api/options.md#provide) |
| 42 | + - [other options](api/options.md#other-options) |
| 43 | + - [Wrapper](api/wrapper/) |
| 44 | + - [attributes](api/wrapper/attributes.md) |
| 45 | + - [classes](api/wrapper/classes.md) |
| 46 | + - [contains](api/wrapper/contains.md) |
| 47 | + - [emitted](api/wrapper/emitted.md) |
| 48 | + - [emittedByOrder](api/wrapper/emittedByOrder.md) |
| 49 | + - [exists](api/wrapper/exists.md) |
| 50 | + - [destroy](api/wrapper/destroy.md) |
| 51 | + - [find](api/wrapper/find.md) |
| 52 | + - [findAll](api/wrapper/findAll.md) |
| 53 | + - [get](api/wrapper/get.md) |
| 54 | + - [html](api/wrapper/html.md) |
| 55 | + - [is](api/wrapper/is.md) |
| 56 | + - [isEmpty](api/wrapper/isEmpty.md) |
| 57 | + - [isVueInstance](api/wrapper/isVueInstance.md) |
| 58 | + - [name](api/wrapper/name.md) |
| 59 | + - [props](api/wrapper/props.md) |
| 60 | + - [setChecked](api/wrapper/setChecked.md) |
| 61 | + - [setData](api/wrapper/setData.md) |
| 62 | + - [setMethods](api/wrapper/setMethods.md) |
| 63 | + - [setProps](api/wrapper/setProps.md) |
| 64 | + - [setSelected](api/wrapper/setSelected.md) |
| 65 | + - [setValue](api/wrapper/setValue.md) |
| 66 | + - [text](api/wrapper/text.md) |
| 67 | + - [trigger](api/wrapper/trigger.md) |
| 68 | + - [isVisible](api/wrapper/isVisible.md) |
| 69 | + - [WrapperArray](api/wrapper-array/) |
| 70 | + - [at](api/wrapper-array/at.md) |
| 71 | + - [contains](api/wrapper-array/contains.md) |
| 72 | + - [exists](api/wrapper/exists.md) |
| 73 | + - [destroy](api/wrapper-array/destroy.md) |
| 74 | + - [filter](api/wrapper-array/filter.md) |
| 75 | + - [is](api/wrapper-array/is.md) |
| 76 | + - [isEmpty](api/wrapper-array/isEmpty.md) |
| 77 | + - [isVueInstance](api/wrapper-array/isVueInstance.md) |
| 78 | + - [setChecked](api/wrapper-array/setChecked.md) |
| 79 | + - [setData](api/wrapper-array/setData.md) |
| 80 | + - [setMethods](api/wrapper-array/setMethods.md) |
| 81 | + - [setProps](api/wrapper-array/setProps.md) |
| 82 | + - [setValue](api/wrapper-array/setValue.md) |
| 83 | + - [trigger](api/wrapper-array/trigger.md) |
| 84 | + - [isVisible](api/wrapper-array/isVisible.md) |
| 85 | + - [components](api/components/) |
| 86 | + - [RouterLinkStub](api/components/RouterLinkStub.md) |
| 87 | + - [Selectors](api/selectors.md) |
| 88 | + - [createWrapper](api/createWrapper.md) |
| 89 | + - [createLocalVue](api/createLocalVue.md) |
| 90 | + - [config](api/config.md) |
0 commit comments