You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the regex validations, we found a library to mock those, but we need a library to not mock those. We could just mock arbitrary strings and check against the regex until we don't match. Seems risky with infinite loops. Maybe there's a way with randexp. We could alter the regex to be (?!(<the-provided-regex>)) but I'm seeing a lot about why that's not good.
The text was updated successfully, but these errors were encountered:
For the regex validations, we found a library to mock those, but we need a library to not mock those. We could just mock arbitrary strings and check against the regex until we don't match. Seems risky with infinite loops. Maybe there's a way with
randexp
. We could alter the regex to be(?!(<the-provided-regex>))
but I'm seeing a lot about why that's not good.The text was updated successfully, but these errors were encountered: