diff --git a/packages/grafana-ui/src/components/FormGroup/FormGroup.test.tsx b/packages/grafana-ui/src/components/FormGroup/FormGroup.test.tsx
new file mode 100644
index 00000000000..4f8b4be9540
--- /dev/null
+++ b/packages/grafana-ui/src/components/FormGroup/FormGroup.test.tsx
@@ -0,0 +1,26 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import { FormGroup, Props } from './FormGroup';
+
+const setup = (propOverrides?: object) => {
+ const props: Props = {
+ label: 'Test',
+ labelWidth: 11,
+ inputProps: {
+ value: 10,
+ onChange: jest.fn(),
+ },
+ };
+
+ Object.assign(props, propOverrides);
+
+ return shallow(