Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianaixba committed Apr 10, 2024
1 parent d085d9b commit 525f65a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions report/test/renderer/category-renderer-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,6 @@ describe('CategoryRenderer', () => {
passingRefs[1].result.warnings = ['Some warning'];
// Make one audit n/a
const audit = categoryClone.auditRefs.find(ref => ref.id === 'is-crawlable');
console.log('audit', audit);
audit.result.scoreDisplayMode = 'notApplicable';
audit.result.score = null;

Expand All @@ -432,9 +431,9 @@ describe('CategoryRenderer', () => {
const manualAudits = elem.querySelectorAll('.lh-clump--manual .lh-audit');
const naAudits = elem.querySelectorAll('.lh-clump--notapplicable .lh-audit');

assert.equal(passedAudits.length, 2);
assert.equal(passedAudits.length, 3);
assert.equal(failedAudits.length, 3);
assert.equal(warningAudits.length, 2);
assert.equal(warningAudits.length, 1);
assert.equal(manualAudits.length, 1);
assert.equal(naAudits.length, 3);

Expand Down

0 comments on commit 525f65a

Please sign in to comment.