fix: merge duplicate global options in WidgetTextarea test

Fixes duplicate object key from rebase conflict resolution.
This commit is contained in:
bymyself
2026-03-12 09:05:50 -07:00
parent 6d34b78824
commit 81928884f5

View File

@@ -41,18 +41,16 @@ function mountComponent(
) {
return mount(WidgetTextarea, {
global: {
plugins: [createTestingPinia()]
plugins: [createTestingPinia()],
mocks: {
$t: (msg: string) => msg
}
},
props: {
widget,
modelValue,
readonly,
placeholder
},
global: {
mocks: {
$t: (msg: string) => msg
}
}
})
}