jest-styled-components
Advanced tools
Comparing version 4.1.1 to 4.1.2
{ | ||
"name": "jest-styled-components", | ||
"version": "4.1.1", | ||
"version": "4.1.2", | ||
"description": "Jest utilities for Styled Components", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -11,3 +11,6 @@ const { printReceived, printExpected } = require('jest-matcher-utils') | ||
} else if (typeof received.find === 'function') { | ||
className = received.find('[className]').first().prop('className') | ||
const components = received.find('[className]') | ||
if (components.length) { | ||
className = components.first().prop('className') | ||
} | ||
} | ||
@@ -14,0 +17,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
17427
286