Edward Wardell-Yerburgh

Results 88 comments of Edward Wardell-Yerburgh

Global components? I'll have a look into how best do this.

@rmartins90 yeah I agree, I'll implement it tomorrow 👍

@rmartins90 just to be clear, do you mean `shallow` should overwrite any global component that has already been rendered. Or do you mean `shallow` should stub every component referenced inside...

`shallow` now stubs every globally registered in 2.4.3

I think you can use mount for this, unless you think it's a bug. If it's a bug, can you post the component and test?

The option you've described where you can blacklist components sounds like the `stub` option that exits in `vue-test-utils` (it's the currently unreleased official test library). You can pass it a...

I think some people will be using this project for a long time, so porting this feature would be very useful for some people. I'd happily accept a PR that...

@scottadamsmith yes if you'd like to implement I'd be happy to review and merge 🙂

Thanks for the bug report. What Vue version are you using?

Yes, sorry you'll have to stub the actual component before you mount, which isn't ideal. ```js import { mount } from 'avoriaz' import Component from './index.vue' // build component Component.methodToStub...