vue-test-utils-compat
Advanced tools
Comparing version 0.0.12 to 0.0.13
@@ -0,1 +1,5 @@ | ||
# 0.0.13 | ||
- Improve WRAPPER_ATTRIBUTES_FROM_ATTRS to beter mimic legacy behaviour | ||
# 0.0.12 | ||
@@ -2,0 +6,0 @@ |
@@ -23,4 +23,3 @@ 'use strict'; | ||
originalAttributes == null && | ||
wrapper.vm?.$attrs && | ||
attr in wrapper.vm.$attrs | ||
wrapper.vm?.$attrs?.[attr] | ||
) { | ||
@@ -27,0 +26,0 @@ return wrapper.vm.$attrs[attr]; |
@@ -21,4 +21,3 @@ function install$3(VTU, compatConfig) { | ||
originalAttributes == null && | ||
wrapper.vm?.$attrs && | ||
attr in wrapper.vm.$attrs | ||
wrapper.vm?.$attrs?.[attr] | ||
) { | ||
@@ -25,0 +24,0 @@ return wrapper.vm.$attrs[attr]; |
{ | ||
"name": "vue-test-utils-compat", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"description": "Compat layer for @vue/test-utils@2.x", | ||
@@ -5,0 +5,0 @@ "main": "dist/vue-test-utils-compat.cjs.js", |
@@ -21,4 +21,3 @@ export function install(VTU, compatConfig) { | ||
originalAttributes == null && | ||
wrapper.vm?.$attrs && | ||
attr in wrapper.vm.$attrs | ||
wrapper.vm?.$attrs?.[attr] | ||
) { | ||
@@ -25,0 +24,0 @@ return wrapper.vm.$attrs[attr]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
135832
3202