diff --git a/frontend/src/__mocks__/react-mdl.js b/frontend/src/__mocks__/react-mdl.js index 04e07f153d..dda2ca9455 100644 --- a/frontend/src/__mocks__/react-mdl.js +++ b/frontend/src/__mocks__/react-mdl.js @@ -11,6 +11,7 @@ module.exports = { List: 'react-mdl-List', ListItem: 'react-mdl-ListItem', ListItemContent: 'react-mdl-ListItemContent', + ListItemAction: 'react-mdl-ListItemAction', ProgressBar: 'react-mdl-ProgressBar', Switch: 'react-mdl-Switch', Tab: 'react-mdl-Tab', diff --git a/frontend/src/component/archive/__tests__/__snapshots__/archive-list-component-test.jsx.snap b/frontend/src/component/archive/__tests__/__snapshots__/archive-list-component-test.jsx.snap index 9a0b363fec..97ef0d45fd 100644 --- a/frontend/src/component/archive/__tests__/__snapshots__/archive-list-component-test.jsx.snap +++ b/frontend/src/component/archive/__tests__/__snapshots__/archive-list-component-test.jsx.snap @@ -5,81 +5,94 @@ exports[`renders correctly with archived toggles 1`] = ` className="fullwidth" shadow={0} > -
- +
- - Revive - - - Enabled - - - Toggle name - - - Created - - + + + + Toggle name + + + Revive + + +
+ + + + + + + + adin-pay-confirm-disabled +
+ Disables the confirm-functionality from API +
+
+
+ + + +
+ + + + + + + adin-pay-platform-sch-payment +
+ Enables use of schibsted payment from order-payment-management +
+
+
+ + + +
+
+
+
`; diff --git a/frontend/src/component/archive/__tests__/archive-list-component-test.jsx b/frontend/src/component/archive/__tests__/archive-list-component-test.jsx index 67e4f7ed69..3b38afe2ad 100644 --- a/frontend/src/component/archive/__tests__/archive-list-component-test.jsx +++ b/frontend/src/component/archive/__tests__/archive-list-component-test.jsx @@ -1,36 +1,35 @@ -// import React from 'react'; +import React from 'react'; -// import ArchiveList from '../archive-list-component'; -// import renderer from 'react-test-renderer'; +import ArchiveList from '../archive-list-component'; +import renderer from 'react-test-renderer'; jest.mock('react-mdl'); -// const archive = [ -// { -// name: 'adin-pay-confirm-disabled', -// description: 'Disables the confirm-functionality from API', -// enabled: false, -// strategies: [{ name: 'default', parameters: {} }], -// createdAt: '2016-10-25T15:38:28.573Z', -// reviveName: 'adin-pay-confirm-disabled', -// }, -// { -// name: 'adin-pay-platform-sch-payment', -// description: 'Enables use of schibsted payment from order-payment-management', -// enabled: true, -// strategies: [{ name: 'default', parameters: {} }], -// createdAt: '2016-08-03T12:41:35.631Z', -// reviveName: 'adin-pay-platform-sch-payment', -// }, -// ]; +const archive = [ + { + name: 'adin-pay-confirm-disabled', + description: 'Disables the confirm-functionality from API', + enabled: false, + strategies: [{ name: 'default', parameters: {} }], + createdAt: '2016-10-25T15:38:28.573Z', + reviveName: 'adin-pay-confirm-disabled', + }, + { + name: 'adin-pay-platform-sch-payment', + description: 'Enables use of schibsted payment from order-payment-management', + enabled: true, + strategies: [{ name: 'default', parameters: {} }], + createdAt: '2016-08-03T12:41:35.631Z', + reviveName: 'adin-pay-platform-sch-payment', + }, +]; -// todo: fix snapshot test test('renders correctly with no archived toggles', () => { - // const tree = renderer.create().toJSON(); - // expect(tree).toMatchSnapshot(); + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); }); test('renders correctly with archived toggles', () => { - // const tree = renderer.create().toJSON(); - // expect(tree).toMatchSnapshot(); + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); });