[CORD-2338] Single command to run E2E tests

Change-Id: Id8db22b2b496ca16d20d2c4d0739d9b9042540db
diff --git a/e2e/keyboard-shortcuts/shortcut.spec.js b/e2e/keyboard-shortcuts/shortcut.spec.js
index ce0f52a..a4cf974 100644
--- a/e2e/keyboard-shortcuts/shortcut.spec.js
+++ b/e2e/keyboard-shortcuts/shortcut.spec.js
@@ -25,7 +25,12 @@
     user.login();
   });
 
-  it('should open the side panel when ? is pressed', () => {
+  it('should open the side panel when / is pressed', () => {
+    page.pressKey('/');
+    expect(page.sidePanel.getAttribute('class')).toMatch('open');
+  });
+
+  xit('should open the side panel when ? is pressed', () => {
     page.pressKey('?');
     expect(page.sidePanel.getAttribute('class')).toMatch('open');
   });