Releases: adopted-ember-addons/ember-qunit-nice-errors
v.1.2.0 Broccoli persistent filter
ECMAScript 2017 support
v1.1.2
Second bug fix release in 1.1.x serie. This release includes a workaround for ignoring parsing errors in tests that use asynchronous functions in the project. We highly recommend you to upgrade.
Project Update
$ ember install ember-qunit-nice-errors
Community contributions
- #42 Ignore files that recast fails to parse (@sdebarros)
- #40 Update README.md (@marpo60)
Happy testing!
v1.1.1
This release fixes a bug reported in #38. See the Main changes below for more information.
Project Update
$ ember install ember-qunit-nice-errors
Main changes
- Fix for bug reported in #38, when using the option
completeExistingMessages
assert.expect(10);
Was being changed to
assert.expect('assert.expect(10)');
Community contributions
- #38 Add messages only to supported assertions (@sdebarros)
Happy testing!
v1.1.0
This release adds two configuration options, one to improve messages and one to override all assertions messages. It also adds one acceptance test. See the Main changes below for more information.
Project Update
$ ember install ember-qunit-nice-errors
Main changes
- Option
showFileInfo
, adds the line number and file path where the error occurred. - Option
completeExistingMessages
, indicates the addon to replace all assertions, including the ones with messages set by you. - Acceptance tests have been added to ensure that the build process is not affected, and the right changes are made to the builded files.
Community contributions
- #15 Improve messages (@sdebarros and @acostami)
- #30 Validate ember build works as expected (@san650)
- #31 Add override option (@fedekau)
Happy testing!
v1.0.0
This release adds nice messages for all assertion types. See the Main changes below for more information.
Project Update
$ ember install ember-qunit-nice-errors
Main changes
- Add nice message for
strictEqual
,notStrictEqual
,propEqual
,notPropEqual
,deepEqual
andnotDeepEqual
assertion types. This means we are covering all QUnit assertions types.
Community contributions
- #27 Add support for
deepEqual
andnotDeepEqual
(@fedekau) - #28 Add support for
strictEqual
andnotStrictEqual
(@fedekau) - #29 Add support for
propEqual
andnotPropEqual
(@fedekau)
Happy testing!
v0.1.0
This release adds nice messages for more assertion types. See the Main changes below for more information.
Project Update
$ ember install ember-qunit-nice-errors
Main changes
- Add nice message for
notOk
,equal
andnotEqual
assertion types
Community contributions
- #7 Fix LICENSE link (@san650)
- #8 Add
notOk
transformation (@san650) - #10 Add CodeClimate badge (@fedekau)
- #12 Add message for
assert.equal
(@fedekau) - #14 Add message for
assert.notEqual
(@san650) - #16 Add not equal to README.md (@fedekau)
Happy testing!