summaryrefslogtreecommitdiffstats
path: root/test/input/ToggleInput.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/ToggleInput.test.js')
-rw-r--r--test/input/ToggleInput.test.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/input/ToggleInput.test.js b/test/input/ToggleInput.test.js
deleted file mode 100644
index 80f0345..0000000
--- a/test/input/ToggleInput.test.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import React from 'react';
-import { mount } from 'enzyme';
-
-import ToggleInput from 'generic-components/input/ToggleInput.jsx';
-
-describe('ToggleInput Tests', () => {
- it('render toggle input - visible', () => {
- const toggle = mount( <ToggleInput /> );
- expect(toggle).toHaveLength(1); // ensure the message bar is mounted
- expect(toggle.find('input')).toHaveLength(1); // ensure the InlineMessage is mounted
- });
-})