Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
chore: Release axe-webdriverjs 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
WilcoFiers committed Dec 19, 2017
1 parent b9dfef8 commit d6e6518
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<a name="1.2.1"></a>
## [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


<a name="1.2.0"></a>
# [1.2.0](https://github.com/dequelabs/axe-webdriverjs/compare/v1.1.4...v1.2.0) (2017-11-16)

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down Expand Up @@ -64,7 +64,7 @@
"sinon": "^1.17.3"
},
"dependencies": {
"axe-core": "^2.5.0",
"axe-core": "^2.6.0",
"selenium-webdriver": ">= 2.53.1"
}
}
5 changes: 4 additions & 1 deletion test/integration/configure-frames.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit d6e6518

Please sign in to comment.