We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b527e8 commit 632e90cCopy full SHA for 632e90c
package.json
@@ -60,6 +60,7 @@
60
"karma-sauce-launcher": "^0.2.14",
61
"node-sass": "^3.4.2",
62
"protractor": "^3.3.0",
63
+ "protractor-accessibility-plugin": "0.1.1",
64
"sass": "^0.5.0",
65
"strip-ansi": "^3.0.0",
66
"symlink-or-copy": "^1.0.1",
test/protractor.conf.js
@@ -10,6 +10,12 @@ require('ts-node').register({
10
const E2E_BASE_URL = process.env['E2E_BASE_URL'] || 'http://localhost:4200';
11
const config = {
12
useAllAngular2AppRoots: true,
13
+ plugins: [{
14
+ chromeA11YDevTools: {
15
+ treatWarningsAsFailures: true
16
+ },
17
+ package: 'protractor-accessibility-plugin'
18
+ }],
19
specs: [ path.join(__dirname, '../e2e/**/*.e2e.ts') ],
20
baseUrl: E2E_BASE_URL
21
};
0 commit comments