@enact/core
Advanced tools
Comparing version 3.3.0-alpha.2 to 3.3.0-alpha.3
@@ -5,2 +5,12 @@ # Change Log | ||
## [3.3.0-alpha.3] - 2020-03-17 | ||
### Fixed | ||
- `core/util.mergeClassNames` to mirror class names when used in unit tests | ||
## [3.3.0-alpha.2] - 2020-03-09 | ||
No significant changes. | ||
## [3.3.0-alpha.1] - 2020-02-26 | ||
@@ -7,0 +17,0 @@ |
{ | ||
"name": "@enact/core", | ||
"version": "3.3.0-alpha.2", | ||
"version": "3.3.0-alpha.3", | ||
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -217,2 +217,11 @@ "use strict"; | ||
}); | ||
if (process.env.NODE_ENV === 'test') { | ||
return new Proxy({}, { | ||
get: function get(target, key) { | ||
// use the merged value if it exists and the key otherwise | ||
return css[key] || key; | ||
} | ||
}); | ||
} | ||
} | ||
@@ -219,0 +228,0 @@ |
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
192084
5124
2
8