Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(635)

Side by Side Diff: tools/cc-frame-viewer/third_party/gl-matrix/tasks/test/node.rake

Issue 15736032: Remove old cc-frame-viewer now that it is upstreamed into trace_viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 namespace :test do
2 desc "run test suite with node.js"
3 task :node => :build do
4 # make sure jasmine-node exists, and barf if it doesn't
5 if %x['jasmine-node'] =~ /USAGE/
6 unless system 'jasmine-node', base_path.join('spec').to_s
7 raise "node.js tests failed"
8 end
9 else
10 puts "jasmine-node is not available"
11 puts
12 puts "Please run:"
13 puts " npm install -g jasmine-node"
14 puts
15 puts "...and then try again."
16 puts
17 exit
18 end
19 end
20 end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698