mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 14:30:41 +00:00
fix: merge duplicate global options in WidgetTextarea test
Fixes duplicate object key from rebase conflict resolution.
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user