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

Side by Side Diff: third_party/pkg/di/run-tests.sh

Issue 107003007: Adding Angular's DI package & Dart unittests which test it. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 12 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
2 #!/bin/sh
3 set -e
4
5 echo "run type factories generator for tests"
6 ./test_tf_gen.sh
7
8 echo "run tests in dart"
9 dart --checked test/main.dart
10
11 echo "run dart2js on tests"
12 mkdir -p out
13 dart2js -c test/main.dart -o out/main.dart.js
14
15 echo "run tests in node"
16 node out/main.dart.js
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698