aboutsummaryrefslogtreecommitdiffstats
path: root/Cakefile
diff options
context:
space:
mode:
authorJez Ng2012-09-03 19:24:47 -0400
committerJez Ng2012-09-03 21:17:46 -0400
commit5a42c4909ac990d87399c939903aebc4d8b26309 (patch)
tree5385dcb139bd1c0583b4d1876323f69a7e8ea1ab /Cakefile
parent90dfd91ffdaec6539950b2f9229cfabfd186bb1e (diff)
downloadvimium-5a42c4909ac990d87399c939903aebc4d8b26309.tar.bz2
Make hints tests pass again.
Convert them to Coffeescript at the same time. We really need to set up some automated way of running these tests, to ensure they don't keep breaking.
Diffstat (limited to 'Cakefile')
-rw-r--r--Cakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cakefile b/Cakefile
index 55653b7b..697c03dc 100644
--- a/Cakefile
+++ b/Cakefile
@@ -8,7 +8,8 @@ spawn_with_opts = (proc_name, opts) ->
opt_array.push "--#{key}=#{value}"
spawn proc_name, opt_array
-src_directories = ["tests", "background_scripts", "content_scripts", "lib", "options"]
+src_directories = ["tests", "background_scripts", "content_scripts", "lib", "options",
+ "test_harnesses/automated"]
task "build", "compile all coffeescript files to javascript", ->
coffee = spawn "coffee", ["-c"].concat(src_directories)