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
I think we should probably make require('vows').assert export strict mode functions, since the legacy mode functions a) are deprecated and b) cause surprising results since they use ==. Assuming we do this, we should do it before 1.0.0 final because it's a breaking change.
The text was updated successfully, but these errors were encountered:
Apparently Node core now has a strict assertion mode, and the old behavior ("legacy assertion mode") is deprecated. See https://nodejs.org/api/assert.html#assert_strict_assertion_mode.
I think we should probably make
require('vows').assert
export strict mode functions, since the legacy mode functions a) are deprecated and b) cause surprising results since they use==
. Assuming we do this, we should do it before 1.0.0 final because it's a breaking change.The text was updated successfully, but these errors were encountered: