Skip to content

Commit

Permalink
[ENHANCEMENT] Add name to test
Browse files Browse the repository at this point in the history
  • Loading branch information
billybonks committed Jul 4, 2018
1 parent a6cff2f commit dcd7fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/test-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = function(relativePath, results, testingFramework){
assertions = results.warnings.map(warning => `${warning.line}:${warning.column} ${escapeString(warning.text)}`).join('\n');
}
return (
generator.suiteHeader('Stylelint') +
generator.suiteHeader(`Stylelint: ${relativePath}`) +
generator.test(relativePath + ' should pass stylelint', passed, assertions) +
generator.suiteFooter()
);
Expand Down

0 comments on commit dcd7fdb

Please sign in to comment.