File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,27 @@ gulp.task('test-browser', function (cb) {
176
176
} ) ;
177
177
178
178
gulp . task ( 'run-browser-test' , function ( cb ) {
179
+ runSequence ( 'run-browser-test-firefox' , cb ) ;
180
+ } ) ;
181
+
182
+ gulp . task ( 'run-browser-test-chrome' , function ( cb ) {
183
+ new karmaServer ( {
184
+ configFile : __dirname + '/test/browser/karma-chrome.conf.js' ,
185
+ } , cb ) . start ( ) ;
186
+ } ) ;
187
+
188
+ gulp . task ( 'run-browser-test-firefox' , function ( cb ) {
179
189
new karmaServer ( {
180
190
configFile : __dirname + '/test/browser/karma-firefox.conf.js' ,
181
191
} , cb ) . start ( ) ;
182
192
} ) ;
183
193
194
+ gulp . task ( 'run-browser-edge' , function ( cb ) {
195
+ new karmaServer ( {
196
+ configFile : __dirname + '/test/browser/karma-edge.conf.js' ,
197
+ } , cb ) . start ( ) ;
198
+ } ) ;
199
+
184
200
gulp . task ( 'watch' , function ( ) {
185
201
return watch ( 'src/**/*.js' , batch ( function ( events , done ) {
186
202
gulp . start ( 'all' , done ) ;
You can’t perform that action at this time.
0 commit comments