We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.0.0-beta.15
vue-test-utils/test/specs/mounting-options/slots.spec.js
Line 111 in 1a4d12f
Changing as below.
Lines 109 to 112 in 1a4d12f
↓
const wrapper5 = mountingMethod(ComponentWithSlots, { slots: { default: '1{{ foo }}2' }}) expect(wrapper5.find('main').html()).to.equal('<main>1bar2</main>') wrapper5.trigger('keydown') expect(wrapper5.find('main').html()).to.equal('<main>1BAR2</main>') // add this line const wrapper6 = mountingMethod(ComponentWithSlots, { slots: { default: '<p>1</p><p>2</p>' }})
The content of the template passed to slot option is updated.
The content of the template passed to slot option is not updated.
Would you please check below links?
Improve passing text to slots #274 (comment)
3b99090#diff-dbfd1670fb2dd50be051adb6643c8c24
The text was updated successfully, but these errors were encountered:
fix vuejs#582
269b7e1
372ab7b
d09045a
fix vuejs#455 and remove code for vuejs#582
a7d0a14
No branches or pull requests
Version
1.0.0-beta.15
Reproduction link
vue-test-utils/test/specs/mounting-options/slots.spec.js
Line 111 in 1a4d12f
Steps to reproduce
Changing as below.
vue-test-utils/test/specs/mounting-options/slots.spec.js
Lines 109 to 112 in 1a4d12f
↓
What is expected?
The content of the template passed to slot option is updated.
What is actually happening?
The content of the template passed to slot option is not updated.
Would you please check below links?
Improve passing text to slots #274 (comment)
3b99090#diff-dbfd1670fb2dd50be051adb6643c8c24
The text was updated successfully, but these errors were encountered: