Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: Update missed rename of import to test-utils as the new default
Signed-off-by: Hilbrand Bouwkamp <hilbrand@h72.nl>
  • Loading branch information
Hilbrand committed Jun 22, 2023
commit 97a03e40377b1fc7edcf5969e47f4cdf75cdf1da
2 changes: 1 addition & 1 deletion docs/fr/guide/extending-vtu/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ wrapper.findByTestId('name-input'); // retourne un VueWrapper ou DOMWrapper
Implémentation du plugin&nbsp;:

```js
import { config } from '@vue/test-utils-next';
import { config } from '@vue/test-utils';

const DataTestIdPlugin = (wrapper) => {
function findByTestId(selector) {
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/extending-vtu/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ wrapper.findByTestId('name-input') // returns a VueWrapper or DOMWrapper
Implementation of the plugin:

```js
import { config } from '@vue/test-utils-next'
import { config } from '@vue/test-utils'

const DataTestIdPlugin = (wrapper) => {
function findByTestId(selector) {
Expand Down