diff --git a/src/utils/getDefaultToolbarButtons.js b/src/utils/getDefaultToolbarButtons.js deleted file mode 100644 index 408f84c45..000000000 --- a/src/utils/getDefaultToolbarButtons.js +++ /dev/null @@ -1,60 +0,0 @@ -export default function() { - return [ - { - command: 'StackScroll', - type: 'tool', - text: 'Stack Scroll', - icon: 'bars', - active: false, - }, - { - command: 'Zoom', - type: 'tool', - text: 'Zoom', - icon: 'search-plus', - active: false, - }, - { - command: 'Wwwc', - type: 'tool', - text: 'Levels', - icon: 'level', - active: true, - }, - { - command: 'Pan', - type: 'tool', - text: 'Pan', - icon: 'arrows', - active: false, - }, - { - command: 'Length', - type: 'tool', - text: 'Length', - icon: 'measure-temp', - active: false, - }, - /*{ - command: 'Annotate', - type: 'tool', - text: 'Annotate', - icon: `icon-tools-measure-non-target`, - active: false - },*/ - { - command: 'Angle', - type: 'tool', - text: 'Angle', - icon: 'angle-left', - active: false, - }, - { - command: 'reset', - type: 'command', - text: 'Reset', - icon: 'reset', - active: false, - }, - ]; -} diff --git a/src/utils/getDefaultToolbarButtons.test.js b/src/utils/getDefaultToolbarButtons.test.js deleted file mode 100644 index 8f59f53fa..000000000 --- a/src/utils/getDefaultToolbarButtons.test.js +++ /dev/null @@ -1,9 +0,0 @@ -import getDefaultToolbarButtons from './getDefaultToolbarButtons.js'; - -describe('getDefaultToolbarButtons.js', () => { - it('returns a non-empty array', () => { - const buttons = getDefaultToolbarButtons(); - - expect(buttons.length).toBeGreaterThan(0); - }); -});