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
Instead of having to copy/paste over and over things such as
// Function
assertionThrown = false;
try {
something( function(){} );
} catch( error ) {
assertionThrown = true;
}
ok( assertionThrown, 'Parameter was a Function' );
for each type wanting to check
sometimes specific values need to be set or a property on an object to get past some other assertion logic later in the code under test so needs to be definable beyond just a type.
The text was updated successfully, but these errors were encountered:
Instead of having to copy/paste over and over things such as
for each type wanting to check
sometimes specific values need to be set or a property on an object to get past some other assertion logic later in the code under test so needs to be definable beyond just a type.
The text was updated successfully, but these errors were encountered: