vue-a11y / vue-axe

Accessibility auditing for Vue.js applications.
https://axe.vue-a11y.com/
MIT License
187 stars 13 forks source link

Console cleared even when `clearConsoleOnUpdate: false` #26

Closed rudolfbyker closed 4 years ago

rudolfbyker commented 4 years ago

I can't find a way to disable all console clears from this module. It's quite important for my development process that the console is NEVER cleared.

ktquez commented 4 years ago

@rudolfbyker

Again, thanks for the contributions when using the vue-axe and reporting some improvements. I released a v2.1.0 version right now.

Vue.use(VueAxe, { auto: false }) // Disables automatic verification
// Not clear console logs
this.$axe.run() 
// Clearing the console logs
this.$axe.run({ clearConsole: true }) 
rudolfbyker commented 4 years ago

It's working well now! Thanks!

ktquez commented 4 years ago

I thank you.