
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
This Danger Plugin allows you to standardise the output for all of your testing runs. Most test runners include an ability to have a reporter that conforms to the JUnit XML standard. This plugin will understand that file and offer a way to introspect it, and to report on it.
$ gem install danger-junit
For Rspec, add the gem rspec_junit_formatter
to your project. Then use a .rspec
file to configure your tests to have multiple reporters. This file looks like:
...
--format documentation
--format RspecJunitFormatter --out junit-results.xml
...
Then you can pass the junit-results.xml
file to the plugin in your Dangerfile
.
In a Jasmine, or Jest testing project, you want to install the module jasmine-reporters
. Then as you are setting up your Jasmine runner, add the following:
var junitReporter = new jasmineReporters.JUnitXmlReporter({
savePath: 'junit-results.xml',
consolidateAll: false
});
jasmine.getEnv().addReporter(junitReporter);
Then you can pass the junit-results.xml
file to the plugin in your Dangerfile
.
You have a lot of options:
Report, or inspect any JUnit XML formatted test suite report.
Testing frameworks have standardized on the JUnit XML format for reporting results, this means that projects using Rspec, Jasmine, Mocha, XCTest and more - can all use the same Danger error reporting. Perfect.
You can see some examples on this page from Circle CI and on this project's README about how you can add JUnit XML output for your testing projects.
Parse the XML file, and let the plugin do your reportingjunit.parse "/path/to/output.xml" junit.report
Let the plugin parse the XML file, and report yourselfjunit.parse "/path/to/output.xml" fail("Tests failed") unless junit.failures.empty?
Warn on a report about skipped testsjunit.parse "/path/to/output.xml" junit.show_skipped_tests = true junit.skipped_headers = [:name, :file] junit.report
Only show specific parts of your resultsjunit.parse "/path/to/output.xml" junit.headers = [:name, :file] junit.report
Only show specific parts of your resultsjunit.parse "/path/to/output.xml" all_test = junit.tests.map(&:attributes) slowest_test = sort_by { |attributes| attributes[:time].to_f }.last message "#{slowest_test[:time]} took #{slowest_test[:time]} seconds"
tests
- All the tests for introspection
passes
- An array of XML elements that represent passed tests.
failures
- An array of XML elements that represent failed tests.
errors
- An array of XML elements that represent passed tests.
skipped
- An array of XML elements that represent skipped tests.
show_skipped_tests
- An attribute to make the plugin show a warning on skipped tests.
headers
- An array of symbols that become the columns of your tests,
if nil
, the default, it will be all of the attributes.
skipped_headers
- An array of symbols that become the columns of your skipped tests,
if nil
, the default, it will be all of the attributes for a single parse
or all of the common attributes between multiple files
parse
- Parses an XML file, which fills all the attributes,
will raise
for errors
report
- Causes a build fail if there are test failures,
and outputs a markdown table of the results.
bundle install
to setup dependencies.bundle exec rake spec
to run the tests.bundle exec guard
to automatically have tests run as you make changes.FAQs
Unknown package
We found that danger-junit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.