Minor Changes
-
Initial release of
@remix-run/assert.A compatible subset of
node:assert/strictthat works in any JavaScript environment, including browsers. Uses strict equality (===) for all comparisons — no type coercion.AssertionError— compatible withnode:assert.AssertionError(actual,expected,operator,name)assert.ok— truthy checkassert.equal/assert.notEqual— strict equality (===/!==)assert.deepEqual/assert.notDeepEqual— recursive strict deep equalityassert.match— string matches a regexpassert.fail— unconditional failureassert.throws— synchronous throw assertionassert.rejects— async rejection assertion