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) {
176176} ) ;
177177
178178gulp . 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 ) {
179189 new karmaServer ( {
180190 configFile : __dirname + '/test/browser/karma-firefox.conf.js' ,
181191 } , cb ) . start ( ) ;
182192} ) ;
183193
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+
184200gulp . task ( 'watch' , function ( ) {
185201 return watch ( 'src/**/*.js' , batch ( function ( events , done ) {
186202 gulp . start ( 'all' , done ) ;
You can’t perform that action at this time.
0 commit comments