Skip to content

Commit

Permalink
chore: update dependencies (#1726)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* fix chai bug
  • Loading branch information
straker committed Jul 30, 2019
1 parent 5157e3b commit e4a0081
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"babelify": "^10.0.0",
"blanket": "~1.2.3",
"browserify": "^16.2.3",
"chai": "~4.1.2",
"chai": "~4.2.0",
"clone": "~2.1.1",
"css-selector-parser": "^1.3.0",
"derequire": "^2.0.6",
Expand All @@ -111,7 +111,7 @@
"husky": "^3.0.0",
"jquery": "^3.0.0",
"jsdoc": "^3.5.5",
"lint-staged": "^9.0.0",
"lint-staged": "^9.2.1",
"make-dir": "^3.0.0",
"markdown-table": "^1.1.2",
"minami": "^1.2.3",
Expand All @@ -123,7 +123,7 @@
"selenium-webdriver": "~3.6.0",
"sri-toolbox": "^0.2.0",
"standard-version": "^6.0.0",
"typescript": "^2.9.2",
"typescript": "^3.5.3",
"uglify-js": "^3.4.4",
"weakmap-polyfill": "^2.0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions test/core/base/audit.js
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ describe('Audit', function() {
})[0];
var checkResult = ruleResult.nodes[0].any[0];
assert.isDefined(checkResult.data);
assert.property(checkResult.data, ['cssom']);
assert.property(checkResult.data, 'cssom');
assert.deepEqual(checkResult.data.cssom, preloadData);
// ensure cache is clear
assert.isTrue(typeof axe._selectCache === 'undefined');
Expand Down Expand Up @@ -815,7 +815,7 @@ describe('Audit', function() {
})[0];
var checkResult = ruleResult.nodes[0].any[0];
assert.isDefined(checkResult.data);
assert.notProperty(checkResult.data, ['cssom']);
assert.notProperty(checkResult.data, 'cssom');
// done
done();
},
Expand Down Expand Up @@ -881,7 +881,7 @@ describe('Audit', function() {
})[0];
var checkResult = ruleResult.nodes[0].any[0];
assert.isDefined(checkResult.data);
assert.notProperty(checkResult.data, ['cssom']);
assert.notProperty(checkResult.data, 'cssom');
// done
done();
},
Expand Down

0 comments on commit e4a0081

Please sign in to comment.