aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormrmr19932017-10-25 01:00:18 +0100
committermrmr19932017-10-27 20:35:31 +0100
commitb06ed7bd5cc82ec3307aeee945bcf6bf8f9264ce (patch)
treef3bfb89a61d4216999097559769135021902f958 /tests
parentd8f8015f4cd71cf3681506a5ec16f00f8ab46f46 (diff)
downloadvimium-b06ed7bd5cc82ec3307aeee945bcf6bf8f9264ce.tar.bz2
Include LinkHints, Vomnibar and Marks commands in normal mode file
Diffstat (limited to 'tests')
-rw-r--r--tests/unit_tests/commands_test.coffee8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/unit_tests/commands_test.coffee b/tests/unit_tests/commands_test.coffee
index 08bf0a73..fcc7b821 100644
--- a/tests/unit_tests/commands_test.coffee
+++ b/tests/unit_tests/commands_test.coffee
@@ -3,8 +3,14 @@ extend global, require "./test_chrome_stubs.js"
extend global, require "../../background_scripts/bg_utils.js"
global.Settings = {postUpdateHooks: {}, get: (-> ""), set: ->}
{Commands} = require "../../background_scripts/commands.js"
-global.KeyHandlerMode = {}
+
+# Include mode_normal to check that all commands have been implemented.
+global.KeyHandlerMode = global.Mode = {}
global.DomUtils = {makeXPath: ->}
+global.KeyboardUtils = {platform: ""}
+extend global, require "../../content_scripts/link_hints.js"
+extend global, require "../../content_scripts/marks.js"
+extend global, require "../../content_scripts/vomnibar.js"
{NormalModeCommands} = require "../../content_scripts/mode_normal.js"
context "Key mappings",