停止通过Gulp运行nodemon

时间:2016-06-02 03:28:00

标签: javascript gulp mocha nodemon

这个想法,我会使用nodemon启动一个具有特定端口的应用程序,然后运行我的测试,最后停止正在运行的应用程序,以便我可以随时再次运行它。

gulp.task('test', function(cb) {
    nodemon({
        script: 'server.js',
        env: { 
            'NODE_ENV': 'test' 
        }
    });

    // Run tests....


    // Stop the application and exit running Gulp -> How to do this?
});

有没有办法停止或强制ctrl + c运行gulp?

谢谢,

凯文

1 个答案:

答案 0 :(得分:1)

我得到了这些

require('shelljs/global'); // https://github.com/shelljs/shelljs

gulp.task('test', ['nodemon-test', 'mocha-test']);

gulp.task('nodemon-test', function(cb) {
    nodemon({
        script: 'server.js',
        env: { 
            'NODE_ENV': 'test' 
        }
    })
    .on('start', function() {
        cb();
    })
});

gulp.task('mocha-test', ['nodemon-test'], function() {
    exit(1);
});