diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cc3c93..089113b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ + +## [1.2.1](https://github.com/dequelabs/axe-webdriverjs/compare/v1.2.0...v1.2.1) (2017-12-19) + + +### Features + +* Add axe-core 2.6.0 + + # [1.2.0](https://github.com/dequelabs/axe-webdriverjs/compare/v1.1.4...v1.2.0) (2017-11-16) diff --git a/package-lock.json b/package-lock.json index bd52be3..51d1bed 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,13 +1,13 @@ { "name": "axe-webdriverjs", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { "axe-core": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-2.5.0.tgz", - "integrity": "sha512-onOXxjT3lXT3FfIBH5AIDxug+28Xw4q4XY66v+2rTRWg9o8dSiKr58ZWlCveh1cmE2kL5bT1KlO9PsSr7pWClA==" + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-2.6.0.tgz", + "integrity": "sha512-nZ//K8+ELNmP+9fO3URPP6IJzE/d+tmWcTC9BtI7VxtB/vbCbyBPHgRWTYpSSS8gh10OMck7gYat1qaA60YVEg==" }, "chai": { "version": "3.5.0", diff --git a/package.json b/package.json index dc3c38f..7e05772 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "axe-webdriverjs", "description": "Provides a method to inject and analyze web pages using aXe", - "version": "1.2.0", + "version": "1.2.1", "license": "MPL-2.0", "main": "lib/index.js", "contributors": [ @@ -64,7 +64,7 @@ "sinon": "^1.17.3" }, "dependencies": { - "axe-core": "^2.5.0", + "axe-core": "^2.6.0", "selenium-webdriver": ">= 2.53.1" } } diff --git a/test/integration/configure-frames.js b/test/integration/configure-frames.js index a1e1225..07dedca 100644 --- a/test/integration/configure-frames.js +++ b/test/integration/configure-frames.js @@ -29,7 +29,10 @@ describe('outer-configure-frame.html', function () { it('should find configured violations in all frames', function (done) { AxeBuilder(driver) - .options({rules: {'html-lang-valid': {'enabled': false}}}) + .options({rules: { + 'html-lang-valid': {'enabled': false}, + 'landmark-one-main': {'enabled': false} + }}) .configure(json) .analyze(function (results) { assert.equal(results.violations[0].id, 'dylang');