aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit_tests
diff options
context:
space:
mode:
authorStephen Blott2016-03-05 05:43:42 +0000
committerStephen Blott2016-03-05 05:43:42 +0000
commit62359adda7bc38917de38e3fc794d37817fa05ed (patch)
tree816d696b785f8a58b06ddd01560fee05ca0299e7 /tests/unit_tests
parent27d3d0087c86a6effd25049cbf0d9273eb0af9db (diff)
parentfb67cfdd2ca8c09453cc896fd02d08ed5a74a8a4 (diff)
downloadvimium-62359adda7bc38917de38e3fc794d37817fa05ed.tar.bz2
Merge pull request #2022 from smblott-github/generalised-key-bindings
Key handling in content scripts.
Diffstat (limited to 'tests/unit_tests')
-rw-r--r--tests/unit_tests/commands_test.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/commands_test.coffee b/tests/unit_tests/commands_test.coffee
index 45cb4cf4..f501a960 100644
--- a/tests/unit_tests/commands_test.coffee
+++ b/tests/unit_tests/commands_test.coffee
@@ -1,6 +1,6 @@
require "./test_helper.js"
extend global, require "./test_chrome_stubs.js"
-global.Settings = {postUpdateHooks: {}}
+global.Settings = {postUpdateHooks: {}, get: (-> ""), set: ->}
{Commands} = require "../../background_scripts/commands.js"
context "Key mappings",