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
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
In one of my test I was trying to test if a string is NOT empty, so I do expect(myString).not.toBe('')
and it doesn't work because not is not defined. Is it supposed to be the way it works or I'm missing something here? Another way I tried was expect(myString).toBeTruthy()
but the log message doesn't seems like toBeTruthy() was something valid either...
The text was updated successfully, but these errors were encountered:
In one of my test I was trying to test if a string is NOT empty, so I do
expect(myString).not.toBe('')
and it doesn't work because
not
is not defined. Is it supposed to be the way it works or I'm missing something here? Another way I tried wasexpect(myString).toBeTruthy()
but the log message doesn't seems like
toBeTruthy()
was something valid either...The text was updated successfully, but these errors were encountered: