
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
jasmine-json-test-reporter
Advanced tools
Jasmine Custom Reporter Documentation
This project is a custom Jasmine reporter that will output spec results, organized by suite, to a file location you specify, as JSON.
I had a project using Jasmine/Protractor that required that I have a parsable version of the test results. The custom Jasmine reporters I could find only gave options to output to the common formats (JUnit, NUnit, TeamCity, HTML). Since I need to parse this data within JavaScript, it made sense to have a JSON representation of my test results.
Protractor does technically provide an option to export results as JSON using the resultJsonOutputFile option, but the data provided is limited. Additionally, I had a need to run Protractor multiple times and dynamically assign the test results output filename each time, which cannot currently be done with Protractor (config can't be modified at run-time).
npm install jasmine-json-test-reporter --save-dev
var JSONReporter = require('jasmine-json-test-reporter');
jasmine.getEnv().addReporter(new JSONReporter({
file: 'jasmine-test-results.json',
beautify: true,
indentationLevel: 4 // used if beautify === true
}));
// in Protractor conf
var JSONReporter = require('jasmine-json-test-reporter');
...
framework: 'jasmine2',
onPrepare: function() {
jasmine.getEnv().addReporter(new JSONReporter({
file: 'jasmine-test-results.json',
beautify: true,
indentationLevel: 4 // used if beautify === true
}));
}
{
"suite1": {
"id": "suite1",
"description": "example suite",
"fullName": "example suite",
"failedExpectations": [],
"status": "finished",
"specs": [
{
"id": "spec0",
"description": "should test something",
"fullName": "example suite should test something",
"failedExpectations": [],
"passedExpectations": [
{
"matcherName": "toBe",
"message": "Passed.",
"stack": "",
"passed": true
},
{
"matcherName": "toBe",
"message": "Passed.",
"stack": "",
"passed": true
}
],
"status": "passed"
}
]
}
}
FAQs
Write Jasmine test results to disk in JSON format
The npm package jasmine-json-test-reporter receives a total of 2,970 weekly downloads. As such, jasmine-json-test-reporter popularity was classified as popular.
We found that jasmine-json-test-reporter 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.