From a1a33eb5e510a4afb304e68ebeb25983f30b7d5b Mon Sep 17 00:00:00 2001 From: Jay Zoldak Date: Fri, 17 May 2013 10:53:14 -0400 Subject: [PATCH] Fix path to phantom jasmine now that we install via node --- rakefiles/jasmine.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefiles/jasmine.rake b/rakefiles/jasmine.rake index 36e4e57a27..1e5050801e 100644 --- a/rakefiles/jasmine.rake +++ b/rakefiles/jasmine.rake @@ -47,7 +47,7 @@ def template_jasmine_runner(lib) if !coffee_files.empty? sh("node_modules/.bin/coffee -c #{coffee_files.join(' ')}") end - phantom_jasmine_path = File.expand_path("common/test/phantom-jasmine") + phantom_jasmine_path = File.expand_path("node_modules/phantom-jasmine") common_js_root = File.expand_path("common/static/js") common_coffee_root = File.expand_path("common/static/coffee/src")