Skip to content

Commit 24fd4a8

Browse files
committed
docs: fix linting errors
1 parent 9189518 commit 24fd4a8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/fr/api/selectors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ expect(wrapper.is(Foo)).toBe(true)
4949
Using a find option object, `vue-test-utils` allows for selecting elements by `$ref` on wrapper components.
5050

5151
```js
52-
const buttonWrapper = wrapper.find({ ref: 'myButton' });
53-
buttonWrapper.trigger('click');
52+
const buttonWrapper = wrapper.find({ ref: 'myButton' })
53+
buttonWrapper.trigger('click')
5454
```

docs/fr/guides/using-with-vuex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,14 +244,14 @@ describe('Modules.vue', () => {
244244
})
245245
})
246246

247-
it("appelle l'action du store moduleActionClick quand le bouton est cliqué", () => {
247+
it('appelle l\'action du store moduleActionClick quand le bouton est cliqué', () => {
248248
const wrapper = shallow(Modules, { store, localVue })
249249
const button = wrapper.find('button')
250250
button.trigger('click')
251251
expect(actions.moduleActionClick).toHaveBeenCalled()
252252
})
253253

254-
it("affiche `state.inputValue` dans la première balise <p>", () => {
254+
it('affiche `state.inputValue` dans la première balise <p>', () => {
255255
const wrapper = shallow(Modules, { store, localVue })
256256
const p = wrapper.find('p')
257257
expect(p.text()).toBe(state.module.clicks.toString())

0 commit comments

Comments
 (0)