From c1ce666577c752dbf8884da009cad75e25a22b1b Mon Sep 17 00:00:00 2001 From: Brendon Silva Date: Sat, 28 Sep 2024 10:03:06 +0100 Subject: [PATCH] import missing DOMWrapper on Implementation of the plugin section --- docs/guide/extending-vtu/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/extending-vtu/plugins.md b/docs/guide/extending-vtu/plugins.md index fb46438f4..f772c715f 100644 --- a/docs/guide/extending-vtu/plugins.md +++ b/docs/guide/extending-vtu/plugins.md @@ -103,7 +103,7 @@ wrapper.findByTestId('name-input') // returns a VueWrapper or DOMWrapper Implementation of the plugin: ```js -import { config } from '@vue/test-utils' +import { config, DOMWrapper} from '@vue/test-utils' const DataTestIdPlugin = (wrapper) => { function findByTestId(selector) {