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

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

Issue 12251005: [cc-frame-viewer] Add gl-matrix to third_party [redux] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « tools/cc-frame-viewer/third_party/gl-matrix/tasks/test/jasmine.rake ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « tools/cc-frame-viewer/third_party/gl-matrix/tasks/test/jasmine.rake ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698