| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- const path = require('path')
- const gulp = require('gulp')
- const KarmaServer = require('karma').Server
- const karmaConfigPath = path.join(__dirname, '../karma.config.js')
- // runs a server, outputs a URL to visit.
- // expects dist to be compiled or watcher to be running.
- gulp.task('test', function() {
- new KarmaServer({
- configFile: karmaConfigPath,
- singleRun: false,
- autoWatch: true
- }, function(exitCode) { // plays best with developing from command line
- process.exit(exitCode)
- }).start()
- })
- // runs headlessly and continuously, watching files.
- // expects dist to be compiled or watcher to be running.
- gulp.task('test:headless', function() {
- new KarmaServer({
- configFile: karmaConfigPath,
- browsers: [ 'PhantomJS_custom' ],
- singleRun: false,
- autoWatch: true
- }, function(exitCode) { // plays best with developing from command line
- process.exit(exitCode)
- }).start()
- })
- // runs headlessly once, then exits
- gulp.task('test:single', [ 'webpack' ], function(done) {
- new KarmaServer({
- configFile: karmaConfigPath,
- browsers: [ 'PhantomJS_custom' ],
- singleRun: true,
- autoWatch: false
- }).on('run_complete', function(browsers, results) { // plays best with CI and other tasks
- done(results.exitCode)
- }).start()
- })
|