我正在使用grunt-jasmine-node在修改文件时运行jasmine-node测试。我不想输出jUnit XML文件。但是,我希望能够输出运行grunt时显示的输出,这只是jasmine-node --verbose输出。是否可以拥有一个侦听我的jasmine-node任务并将其输出获取到文件的任务?我通常会这样做而不使用grunt
jasmine-node --verbose spec | tee file.txt
我希望每次运行jasmine-node-grunt时都会创建一个新文件。我试图做一个在jasmine-node之后运行的小任务,但我不知道如何让它获取从jasmine-node记录的输出。这就是我的Gruntfile的样子。
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concurrent: {
dev: {
tasks: ['watch:hint'],
options: {
logConcurrentOutput: true
}
}
},
watch: {
hint: {
files: ['/home/user/folder/text.txt'],
tasks: ['jasmine_node', 'foo'],
options: {
debounceDelay: 250,
nospawn: true
}
}
},
jasmine_node: {
matchall: true,
projectRoot: "./spec",
requirejs: false,
forceExit: false,
jUnit: {
report: true,
savePath : "./build/reports/jasmine/",
useDotNotation: true,
consolidate: true
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-jasmine-node');
grunt.loadNpmTasks('grunt-nodemailer');
grunt.registerTask('foo', 'My Foo Task', function(){
grunt.task.requires('jasmine_node');
grunt.log.writeln('Testing');
});
grunt.registerTask('default', ['concurrent:dev']);
};