-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fixed] Issue where label assertion returns a false negative when lab…
…el is inside a child Component (fixes #44) [added] Tests to ensure anchors with a tabIndex but without an href require an ARIA button role (fixes #45) [added] selection and option to the list of interactive elements that require labels [removed] getFailures() method since all failures are now logged asynchronously
- Loading branch information
Todd Kloots
committed
Jun 8, 2015
1 parent
b632b14
commit c4d52fc
Showing
11 changed files
with
593 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
before_script: | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
var webpack = require('webpack'); | ||
|
||
module.exports = function (config) { | ||
config.set({ | ||
|
||
browserNoActivityTimeout: 30000, | ||
|
||
browsers: [ process.env.CONTINUOUS_INTEGRATION ? 'Firefox' : 'Chrome' ], | ||
|
||
singleRun: process.env.CONTINUOUS_INTEGRATION === 'true', | ||
|
||
frameworks: [ 'mocha' ], | ||
|
||
files: [ | ||
'tests.webpack.js' | ||
], | ||
|
||
preprocessors: { | ||
'tests.webpack.js': [ 'webpack', 'sourcemap' ] | ||
}, | ||
|
||
reporters: [ 'dots' ], | ||
|
||
webpack: { | ||
devtool: 'inline-source-map', | ||
module: { | ||
loaders: [ | ||
{ test: /\.js$/, loader: 'babel-loader' } | ||
] | ||
}, | ||
plugins: [ | ||
new webpack.DefinePlugin({ | ||
'process.env.NODE_ENV': JSON.stringify('test') | ||
}) | ||
] | ||
}, | ||
|
||
webpackServer: { | ||
noInfo: true | ||
} | ||
|
||
}); | ||
}; |
Oops, something went wrong.