Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR addresses a new lint error added after the Ember upgrade to 4.4 which disallows the use of the QUnit method assert.equal. Since we already use
deepEqual
where necessary this was just a basic find and replace tostrictEqual
.In addition, there were quite a few warnings from the no-console rule which was explicitly set to
warn
in.eslintrc
. Rather than have these continue to appear as warnings, I disabled the rule for the individual intended usages and then globally changed the rule toerror
for the future. Any calls toconsole
should be removed if used for debugging but if it is necessary to leave them in then disable the rule for the instance by using// eslint-disable-line
or similar.