-
Notifications
You must be signed in to change notification settings - Fork 668
New issue
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
fix: Fix references to documents. #1052
Conversation
packages/test-utils/src/wrapper.js
Outdated
@@ -233,7 +233,7 @@ export default class Wrapper implements BaseWrapper { | |||
warn( | |||
`hasAttribute() has been deprecated and will be ` + | |||
`removed in version 1.0.0. Use attributes() ` + | |||
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#attributes` | |||
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#attributes-key` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#attributes-key` | |
`instead—https://vue-test-utils.vuejs.org/api/wrapper/attributes.html` |
packages/test-utils/src/wrapper.js
Outdated
@@ -258,7 +258,7 @@ export default class Wrapper implements BaseWrapper { | |||
warn( | |||
`hasClass() has been deprecated and will be removed ` + | |||
`in version 1.0.0. Use classes() ` + | |||
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#classes` | |||
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#classes-classname` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#classes-classname` | |
`instead—https://vue-test-utils.vuejs.org/api/wrapper/classes.html` |
packages/test-utils/src/wrapper.js
Outdated
@@ -285,7 +285,7 @@ export default class Wrapper implements BaseWrapper { | |||
warn( | |||
`hasProp() has been deprecated and will be removed ` + | |||
`in version 1.0.0. Use props() ` + | |||
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#props` | |||
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#props-key` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`instead—https://vue-test-utils.vuejs.org/api/wrapper/#props-key` | |
`instead—https://vue-test-utils.vuejs.org/api/wrapper/props.html` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, but those URLs are a problem, because they include the method arguments. Can you please use the suggested URLs instead
I appreciate your gently advice. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks :)
I fixed the fragment identifier of the link of warn message.