Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/create-instance/create-instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function createInstance (
) {
if (options.logModifiedComponents) {
warn(
`an extended child component ${c} has been modified ` +
`an extended child component <${c}> has been modified ` +
`to ensure it has the correct instance properties. ` +
`This means it is not possible to find the component ` +
`with a component selector. To find the component, ` +
Expand Down
2 changes: 1 addition & 1 deletion test/specs/mount.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describeRunIf(process.env.TEST_ENV !== 'node', 'mount', () => {

it('logs if component is extended', () => {
const msg =
`[vue-test-utils]: an extended child component ChildComponent ` +
`[vue-test-utils]: an extended child component <ChildComponent> ` +
`has been modified to ensure it has the correct instance properties. ` +
`This means it is not possible to find the component with a component ` +
`selector. To find the component, you must stub it manually using the ` +
Expand Down