developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

React/JS : TypeError: Converting circular structure to JSON #141

Closed developerasun closed 2 years ago

developerasun commented 2 years ago

isse : jest test suite failed to run with fireEvent.change

in terminal,

circular json

developerasun commented 2 years ago

solution : fixed the input element attrbute.

from

expect(inputElement).toBe("testing")

to

expect(inputElement.value).toBe("testing")