diff --git a/webapp/src/widgets/__snapshots__/propertyMenu.test.tsx.snap b/webapp/src/widgets/__snapshots__/propertyMenu.test.tsx.snap
new file mode 100644
index 000000000..b71e6a3db
--- /dev/null
+++ b/webapp/src/widgets/__snapshots__/propertyMenu.test.tsx.snap
@@ -0,0 +1,225 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`widgets/PropertyMenu should match snapshot 1`] = `
+
+
+
+`;
diff --git a/webapp/src/widgets/propertyMenu.test.tsx b/webapp/src/widgets/propertyMenu.test.tsx
index e5b8f573b..0d8d4781b 100644
--- a/webapp/src/widgets/propertyMenu.test.tsx
+++ b/webapp/src/widgets/propertyMenu.test.tsx
@@ -87,4 +87,22 @@ describe('widgets/PropertyMenu', () => {
fireEvent.click(getByText('Select'))
expect(callback).toHaveBeenCalledWith('select')
})
+
+ test('should match snapshot', () => {
+ const callback = jest.fn()
+ const component = wrapIntl(
+ ,
+ )
+ const {container, getByText} = render(component)
+ const menuOpen = getByText(/Type: Text/i)
+ fireEvent.click(menuOpen)
+ expect(container).toMatchSnapshot()
+ })
})