diff --git a/README.md b/README.md index 7fd39c3..ed93bda 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,24 @@ A Cypress JSON test reporter to create test reports that follow the CTRF standar It means a lot to us and helps us grow this open source library. +## We need your help + +We believe CTRF can save **a lot** of time for engineers, a single data serialisation report, well structured, community driven and works with any framework. For over 30s years software engineers have used a de facto data serialisation report, you know the one! But we feel it’s time to modernise. + +The only way we can grow CTRF is with your help and the support of the software engineering community. + +## How can you help? + +- Join and build with us! We are looking for [contributors](https://github.com/ctrf-io), get involved in this early stage project. All contributions are welcome. +- Give this repository a star ⭐⭐⭐⭐⭐⭐ +- Follow the CTRF [GitHub organisation](https://github.com/ctrf-io) +- Clap for our medium articles (30 times each) 👏 +- Share, share share! Discord, Reddit, Twitter, LinkedIn, Slack, Teams, whereever! - please share our [libraries](https://github.com/orgs/ctrf-io/repositories), our [homepage](https://www.ctrf.io/), our [Medium articles](https://medium.com/@ma11hewthomas) +- Maybe even write a blog about us! +- Try our [tools](https://github.com/orgs/ctrf-io/repositories) + +**Thank you so much!!** + ## Features - Generate JSON test reports that are [CTRF](https://ctrf.io) compliant diff --git a/package.json b/package.json index 03071c4..40893cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cypress-ctrf-json-reporter", - "version": "0.0.7", + "version": "0.0.8", "description": "", "main": "dist/index.js", "scripts": { diff --git a/src/generate-report.ts b/src/generate-report.ts index da00d0a..b4be9d6 100644 --- a/src/generate-report.ts +++ b/src/generate-report.ts @@ -127,9 +127,6 @@ export class GenerateCtrfReport { this.reporterConfigOptions.on( 'after:spec', (_spec: CypressAfterSpecSpec, results: CypressAfterSpecResults) => { - fs.writeFileSync('after-spec-results', JSON.stringify(results)) - fs.writeFileSync('after-spec', JSON.stringify(_spec)) - this.updateCtrfResultsFromAfterSpecResults(results) } )