terra-scroll
Advanced tools
Comparing version 2.36.0 to 2.37.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 2.37.0 - (February 15, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 2.36.0 - (November 13, 2023) | ||
@@ -7,0 +12,0 @@ |
{ | ||
"name": "terra-scroll", | ||
"version": "2.36.0", | ||
"version": "2.37.0", | ||
"description": "The terra-scroll is a content view that hides data accessible with scrolling and provides a refCallback.", | ||
@@ -45,3 +45,3 @@ "author": "Cerner Corporation", | ||
}, | ||
"gitHead": "1be8c98fe2eeec64ef7a7fa457dd708da88e5170" | ||
"gitHead": "31ec38baf909fed741b41a204f7fa28884ab327e" | ||
} |
@@ -6,3 +6,3 @@ import React from 'react'; | ||
it('should render a default component', () => { | ||
const scrollable = shallow(<Scroll />); | ||
const scrollable = enzyme.shallow(<Scroll />); | ||
expect(scrollable).toMatchSnapshot(); | ||
@@ -12,4 +12,4 @@ }); | ||
it('should render with props', () => { | ||
const scrollable = shallow(<Scroll refCallback={jest.fn()}>child content</Scroll>); | ||
const scrollable = enzyme.shallow(<Scroll refCallback={jest.fn()}>child content</Scroll>); | ||
expect(scrollable).toMatchSnapshot(); | ||
}); |
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
25373