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 8dedc2d commit 9cd3c3fCopy full SHA for 9cd3c3f
.gitignore
@@ -105,3 +105,6 @@ dist
105
106
# Stores VSCode versions used for testing VSCode extensions
107
.vscode-test
108
+
109
+# Local Netlify folder
110
+.netlify
index.js
@@ -21,9 +21,14 @@ function netlifyPlugin(conf) {
21
.replace(cwd(), '')
22
.replace(/^\//, '');
23
24
+ const chromePath = path.join(
25
+ __dirname,
26
+ 'node_modules/lib/chromedriver/chromedriver_mac64.zip'
27
+ );
28
29
await run.command(
30
// `./node_modules/.bin/axe ${site} ${axeFlags} --save ${resultsPath}`
- `axe ${site} ${axeFlags} --save ${resultsPath}`
31
+ `axe ${site} ${axeFlags} --chromedriver-path="${chromePath}" --save ${resultsPath}`
32
);
33
34
let results = require(resultsPath);
0 commit comments