increasing test coverage to 20 percent
[aai/sparky-fe.git] / test / input / SelectInput.test.js
diff --git a/test/input/SelectInput.test.js b/test/input/SelectInput.test.js
new file mode 100644 (file)
index 0000000..a669361
--- /dev/null
@@ -0,0 +1,13 @@
+import React from 'react';
+import { mount } from 'enzyme';
+import Select from 'react-select';
+
+import SelectInput from 'generic-components/input/SelectInput.jsx';
+
+describe('SelectInput Tests', () => {
+  it('render select input - visible', () => {
+    const select = mount( <SelectInput /> );
+    expect(select).toHaveLength(1); // ensure the message bar is mounted
+    expect(select.find(Select)).toHaveLength(1); // ensure the InlineMessage is mounted
+  });
+})