diff --git a/public/app/core/components/ScrollBar/__snapshots__/withScrollBar.test.tsx.snap b/public/app/core/components/ScrollBar/__snapshots__/withScrollBar.test.tsx.snap
new file mode 100644
index 00000000000..c6b9b5bb37d
--- /dev/null
+++ b/public/app/core/components/ScrollBar/__snapshots__/withScrollBar.test.tsx.snap
@@ -0,0 +1,86 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`withScrollBar renders correctly 1`] = `
+
+`;
diff --git a/public/app/core/components/ScrollBar/withScrollBar.test.tsx b/public/app/core/components/ScrollBar/withScrollBar.test.tsx
new file mode 100644
index 00000000000..89a24a7db8e
--- /dev/null
+++ b/public/app/core/components/ScrollBar/withScrollBar.test.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import renderer from 'react-test-renderer';
+import withScrollBar from './withScrollBar';
+
+class TestComponent extends React.Component {
+ render() {
+ return ;
+ }
+}
+
+describe('withScrollBar', () => {
+ it('renders correctly', () => {
+ const TestComponentWithScroll = withScrollBar(TestComponent);
+ const tree = renderer
+ .create(
+
+ Scrollable content
+
+ )
+ .toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+});