- Documentation, pdf and code fixes.
- Add these functions:
stringStartsWith();stringNotStartsWith();stringEndsWith();stringNotEndsWith();
- Documentation, pdf and code fixes.
- New
assert-cheatsheet.odtandassert-cheatsheet.pdf. - Fix the
AssertionError();. - Modify the
fail();function with the new optional arguments:assert.fail([value1, value2, message, operator]);.
- Documentation, pdf and code fixes.
- Add these functions:
isNotTrue();isNotFalse();oneOf();notOneOf();
- Documentation, pdf and code fixes.
- Basic type assertion functions (
isNumber();,isNotNumber();, etc.) use theassert.is();andassert.isNot();instead of be a standalone function. - Add these functions:
isInt();isNotInt();isFloat();isNotFloat();
- Documentation, pdf and code fixes.
- Add Windows Samsung Browser to the testing enviroments.
- Many TS6 small changes in the code files.
- Add the
assert.config.alwaysStrict;
- Documentation, pdf and code fixes.
- Fix the arguments list of the Testrunner functions in the assert-cheatsheet.odt and assert-cheatsheet.pdf
Only small fixes.
- Documentation, pdf and code fixes.
- Rename these functions:
| Old name | New name |
|---|---|
isNotNullish(); |
isNonNullable(); |
isNotUndefined(); |
isDefined(); |
- Documentation, pdf and code fixes.
- Add inner links in the readme.html.
- Add 2 new properties of the TestResult object (
block,name) in the testrunner functions. - Add these functions:
inRange();notInRange();
- Documentation, pdf and code fixes.
- Add these functions:
assert.isNaN();assert.isNotNaN();
- Documentation, pdf and code fixes.
- Add a new file: CHANGELOG.md
- Fix the string functions to handle the String objects.
- Add these functions:
assert.includes();assert.doesNotInclude();assert.isEmpty()assert.isNotEmpty();assert.isPrimitive()assert.isNotPrimitive();assert.isNull();assert.isNotNull();assert.isUndefined();assert.isNotUndefined();assert.isString();assert.isNotString();assert.isNumber();assert.isNotNumber();assert.isBigInt();assert.isNotBigInt();assert.isBoolean();assert.isNotBoolean();assert.isSymbol();assert.isNotSymbol();assert.isFunction();assert.isNotFunction();assert.isObject();assert.isNotObject();
First stable version.