Functions
is Function
veve / is
Function: is()
is(
received
):Assertion
Defined in: framework/Assertion.ts:983
Creates a new assertion instance for the provided value.
- This function performs non-throwing assertions, which do not raise errors on failure.
- Use this for scenarios where you want to test conditions without interrupting execution.
Parameters
received
any
The value to be strictly asserted.
Returns
An Assertion
instance configured to silently handle failures.