aboutsummaryrefslogtreecommitdiff
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2016-02-04 17:01:33 -0800
committerJosh Haberman <jhaberman@gmail.com>2016-02-18 10:30:21 -0800
commit35298f97793d2b875a349db852b17ba979cf5e13 (patch)
tree732a5527cd194eb25838e23faef056c9a21be4a6 /js/gulpfile.js
parent77af5d04b1897baeda2ebd753d138c99afe72c50 (diff)
downloadprotobuf-35298f97793d2b875a349db852b17ba979cf5e13.tar.gz
protobuf-35298f97793d2b875a349db852b17ba979cf5e13.tar.bz2
protobuf-35298f97793d2b875a349db852b17ba979cf5e13.zip
Fixed definition of extensions, and added CommonJS tests to Travis.
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r--js/gulpfile.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index bdc4212b..d8f8ef4a 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -88,3 +88,7 @@ gulp.task('test_commonjs', ['make_commonjs_out'], function (cb) {
cb(err);
});
});
+
+gulp.task('test', ['test_closure', 'test_commonjs'], function(cb) {
+ cb();
+});