-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
Hello,
When i want to write the results to a logfile (in this case i've tested json and junit output), multiple root elements a written to the file, which causes the file to be json/xml invalid.
In case of the junit output, a lot of information is missing anyway.
jUnit export should include all files, including all failed and succeeded tests. As far as i can see, only failed tests are included.
When using this in Bamboo, the number of performed tests won't match the real number of performed test.
And when a bug is fixed, the test won't change from error to succes but it simply disappears.
Am i doing something wrong?
The task i'm running is:
gulp.task('ci-scssLint', function () {
var file = fs.createWriteStream('../log/sassLint.json');
var stream = gulp.src('../../app/design/frontend/**/*.scss')
.pipe(sassLint({
options: {
configFile: 'sass-lint.yml',
formatter: 'json'
}
}))
.pipe(sassLint.format(file));
stream.on('finish', function() {
file.end();
});
return stream;
});
vincenthornikx and elebescond
Metadata
Metadata
Assignees
Labels
No labels