diff options
| author | Jez Ng | 2012-10-29 23:19:09 -0400 |
|---|---|---|
| committer | Jez Ng | 2012-10-29 23:51:22 -0400 |
| commit | 202824dcbcf57f4c997c9e325e7a1cabc7d8ae0c (patch) | |
| tree | 915a2ed1a34d28af03b6a7e4df66d6a91e513291 | |
| parent | 54fe05aab863c04877a3330d742058280977866c (diff) | |
| download | vimium-202824dcbcf57f4c997c9e325e7a1cabc7d8ae0c.tar.bz2 | |
Integrate with Travis CI.
| -rw-r--r-- | .travis.yml | 11 | ||||
| -rw-r--r-- | README.markdown | 2 | ||||
| -rw-r--r-- | tests/unit_tests/settings_test.coffee | 2 |
3 files changed, 14 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..a66657cc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: node_js +node_js: 0.8 +before_install: + - "sudo npm install -g coffee-script" + - "cake build" +script: "cake test" +notifications: + email: false +branches: + only: + - master diff --git a/README.markdown b/README.markdown index 2bf6f2b0..d805abcf 100644 --- a/README.markdown +++ b/README.markdown @@ -1,6 +1,8 @@ Vimium - The Hacker's Browser ============================= + + Vimium is a Chrome extension that provides keyboard-based navigation and control in the spirit of the Vim editor. diff --git a/tests/unit_tests/settings_test.coffee b/tests/unit_tests/settings_test.coffee index 4599ff03..408d6816 100644 --- a/tests/unit_tests/settings_test.coffee +++ b/tests/unit_tests/settings_test.coffee @@ -1,6 +1,6 @@ require "./test_helper.js" -{Utils} = require "../../lib/utils.js" +extend(global, require "../../lib/utils.js") Utils.getCurrentVersion = -> '1.42' global.localStorage = {} {Settings} = require "../../background_scripts/settings.js" |
