diff --git a/client/src/components/overlays/__snapshots__/AboutPanel.test.tsx.snap b/client/src/components/overlays/__snapshots__/AboutPanel.test.tsx.snap index 8fd57b22..8d869e2d 100644 --- a/client/src/components/overlays/__snapshots__/AboutPanel.test.tsx.snap +++ b/client/src/components/overlays/__snapshots__/AboutPanel.test.tsx.snap @@ -16,7 +16,14 @@ exports[`AboutPanel renders correctly 1`] = ` View, edit and analyze feature models in the browser - with support for real-time collaboration.

- This project is released under the + This project is a research effort of the + + DBSE working group + + and has been released under the .

+

+ If you would like to leave any feedback, use our + + online form + + or + + mail me + + . +

{ wrapper = textFieldDialog(onSubmit, onDismiss); wrapper.find(TextField).simulate('change', null, 'some value'); wrapper.find(PrimaryButton).simulate('click'); - expect(onSubmit).toBeCalledWith('some value'); + expect(onSubmit).toBeCalledWith('some value', {current: null}); expect(onDismiss).toBeCalled(); }); @@ -117,7 +117,7 @@ describe('Dialog', () => { wrapper = textFieldDialog(onSubmit, onDismiss); wrapper.find(TextField).simulate('change', null, 'some value'); wrapper.find(TextField).simulate('keyPress', {key: 'Enter'}); - expect(onSubmit).toBeCalledWith('some value'); + expect(onSubmit).toBeCalledWith('some value', {current: null}); expect(onDismiss).toBeCalled(); });