summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/shortcuts_modal.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/components/shortcuts_modal.test.jsx')
-rw-r--r--webapp/tests/components/shortcuts_modal.test.jsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/webapp/tests/components/shortcuts_modal.test.jsx b/webapp/tests/components/shortcuts_modal.test.jsx
new file mode 100644
index 000000000..04fa51a76
--- /dev/null
+++ b/webapp/tests/components/shortcuts_modal.test.jsx
@@ -0,0 +1,25 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import React from 'react';
+
+import {mountWithIntl} from 'tests/helpers/intl-test-helper.jsx';
+import ShortcutsModal from 'components/shortcuts_modal.jsx';
+
+describe('components/ShortcutsModal', () => {
+ test('should match snapshot modal for Mac', () => {
+ const wrapper = mountWithIntl(
+ <ShortcutsModal isMac={true}/>
+ );
+
+ expect(wrapper).toMatchSnapshot();
+ });
+
+ test('should match snapshot modal for non-Mac like Windows/Linux', () => {
+ const wrapper = mountWithIntl(
+ <ShortcutsModal isMac={false}/>
+ );
+
+ expect(wrapper).toMatchSnapshot();
+ });
+});