Skip to content

Commit c73ad85

Browse files
authored
[patch] added cypress badges (#141)
1 parent c9579fc commit c73ad85

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.scripts/update-badge.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
const fs = require('fs');
2+
const packageJson = require('../package.json');
3+
4+
const packageName = 'cypress';
5+
const prefix = 'latest%20supported%20';
6+
const readmeFile = 'README.pack.md'
7+
const version = packageJson.devDependencies[packageName].replace(/^[^0-9]+/, ''); // Extracts version number
8+
9+
const badgeUrl = `https://img.shields.io/badge/${prefix}${packageName}-${version}-blue`;
10+
11+
let readme = fs.readFileSync(readmeFile, 'utf8');
12+
const badgeRegex = new RegExp(`https://img.shields.io/badge/${prefix}${packageName}-.*-blue`);
13+
readme = readme.replace(badgeRegex, badgeUrl);
14+
15+
fs.writeFileSync(readmeFile, readme, 'utf8');
16+
17+
console.log(`Updated ${packageName} version badge to ${version}`);

README.pack.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# cypress-allure-adapter
22

33
![actions](https://github.com/mmisty/cypress-allure-adapter/actions/workflows/build.yml/badge.svg?branch=main)
4+
![cypress version](https://img.shields.io/badge/latest%20supported%20cypress-13.12.0-blue)
5+
![supported cypress](https://img.shields.io/badge/cypress-12.x-blue)
6+
![supported cypress](https://img.shields.io/badge/cypress-11.x-blue)
7+
![supported cypress](https://img.shields.io/badge/cypress-10.x-blue)
48

59
This is allure adapter for Cypress providing realtime results.
610
It is useful when using Allure TestOps - so you can watch tests execution. It adds tests, steps, suites and screenshots during tests execution.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@
5151
"cov:check": "COVERAGE_TEMP=reports/coverage-temp nyc check-coverage",
5252
"all": "npm run pre && npm run cov:check && npm run cov",
5353
"pre": "rm -rf ./node_modules/.cache lib reports coverage-nyc .nyc_output && npm run lint && npm run build:all && npm run test:cov && npm run cov:merge",
54-
"pack": "npm run build && cp package.json ./lib/package.json && cp README.pack.md ./lib/README.md && cp CHANGELOG.md ./lib/CHANGELOG.md && sh .scripts/remove.sh && cd lib && npm version $ver --no-git-tag-version ",
54+
"pack": "npm run build && npm run update-badge && cp package.json ./lib/package.json && cp README.pack.md ./lib/README.md && cp CHANGELOG.md ./lib/CHANGELOG.md && sh .scripts/remove.sh && cd lib && npm version $ver --no-git-tag-version ",
5555
"prepublish": "npm run lint",
56+
"update-badge": "node ./.scripts/update-badge.js",
5657
"prepublishOnly": "{ echo \"Run script 'npm run publish:pack', 'npm run publish:minor', etc from package.json\n\"; exit 1; }",
5758
"publishPack": "npm run pack && cd lib && npm publish --tag $TAG",
5859
"publish:alpha": "export TAG=alpha && export ver=$(semver $(npm show . version --tag alpha || npm show . version) --increment -i prerelease --preid 'alpha') && npm run publishPack && npm run postpublish",
@@ -93,7 +94,7 @@
9394
"@typescript-eslint/eslint-plugin": "^5.62.0",
9495
"@typescript-eslint/parser": "^5.62.0",
9596
"allure-commandline": "^2.29.0",
96-
"cypress": "^13.11.0",
97+
"cypress": "^13.12.0",
9798
"cypress-redirect-browser-log": "^1.3.0",
9899
"eslint": "^8.57.0",
99100
"eslint-config-prettier": "^9.1.0",

0 commit comments

Comments
 (0)