diff options
| author | Stephen Blott | 2014-12-31 20:52:27 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2015-01-01 09:37:20 +0000 | 
| commit | acefe43cef5a216cb2504e85799699c359b6b4d8 (patch) | |
| tree | 280e4d312cab11eb3b825b1fde73fc0654955e82 /tests | |
| parent | f2b428b4fe1eecd66ee95513da779470f7c621aa (diff) | |
| download | vimium-acefe43cef5a216cb2504e85799699c359b6b4d8.tar.bz2 | |
Modes; incorporate three test modes.
As a proof of concept, this incorporates normal mode, passkeys mode and
insert mode.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/dom_tests/dom_tests.coffee | 1 | ||||
| -rw-r--r-- | tests/dom_tests/dom_tests.html | 1 | ||||
| -rw-r--r-- | tests/unit_tests/test_chrome_stubs.coffee | 2 | 
3 files changed, 4 insertions, 0 deletions
diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee index 4a61877c..124fae06 100644 --- a/tests/dom_tests/dom_tests.coffee +++ b/tests/dom_tests/dom_tests.coffee @@ -178,6 +178,7 @@ context "Input focus",      focusInput 1      assert.equal "first", document.activeElement.id      # deactivate the tabbing mode and its overlays +    currentCompletionKeys = ""      handlerStack.bubbleEvent 'keydown', mockKeyboardEvent("A")      focusInput 100 diff --git a/tests/dom_tests/dom_tests.html b/tests/dom_tests/dom_tests.html index a764b42d..33ccc95c 100644 --- a/tests/dom_tests/dom_tests.html +++ b/tests/dom_tests/dom_tests.html @@ -39,6 +39,7 @@      <script type="text/javascript" src="../../content_scripts/link_hints.js"></script>      <script type="text/javascript" src="../../content_scripts/vomnibar.js"></script>      <script type="text/javascript" src="../../content_scripts/scroller.js"></script> +    <script type="text/javascript" src="../../content_scripts/mode.js"></script>      <script type="text/javascript" src="../../content_scripts/vimium_frontend.js"></script>      <script type="text/javascript" src="../shoulda.js/shoulda.js"></script> diff --git a/tests/unit_tests/test_chrome_stubs.coffee b/tests/unit_tests/test_chrome_stubs.coffee index 3258bcd6..7f666068 100644 --- a/tests/unit_tests/test_chrome_stubs.coffee +++ b/tests/unit_tests/test_chrome_stubs.coffee @@ -41,6 +41,8 @@ exports.chrome =        addListener: () -> true      getAll: () -> true +  browserAction: +    setBadgeBackgroundColor: ->    storage:      # chrome.storage.local      local:  | 
