test(widgets): use expect.soft for valid hex colors loop (suggestion by DrJKL)

This commit is contained in:
bymyself
2025-09-12 19:37:31 -07:00
parent 9520ecd46b
commit 714bf4ca4e

View File

@@ -166,7 +166,7 @@ describe('WidgetColorPicker Value Binding', () => {
const wrapper = mountComponent(widget, color)
const colorText = wrapper.find('span')
expect(colorText.text()).toBe(color)
expect.soft(colorText.text()).toBe(color)
}
})