@testream/cypress-reporter 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +30 -0
- package/README.md +16 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cypress-parser.d.ts +4 -0
- package/dist/cypress-parser.d.ts.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8977 -0
- package/dist/index.js.map +1 -0
- package/dist/sourcemap-register.js +1 -0
- package/dist/types.d.ts +118 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/uploader.d.ts +45 -0
- package/dist/uploader.d.ts.map +1 -0
- package/package.json +57 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Testream Team. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are licensed,
|
|
6
|
+
not sold, to you for use only under the terms of this license.
|
|
7
|
+
|
|
8
|
+
GRANT OF LICENSE:
|
|
9
|
+
You are granted a non-exclusive, non-transferable license to use the Software
|
|
10
|
+
solely for the purpose of integrating test result reporting with the Testream service.
|
|
11
|
+
|
|
12
|
+
RESTRICTIONS:
|
|
13
|
+
- You may not modify, adapt, or create derivative works of the Software
|
|
14
|
+
- You may not distribute, sublicense, lease, or rent the Software
|
|
15
|
+
- You may not reverse engineer, decompile, or disassemble the Software
|
|
16
|
+
- The Software may only be used in conjunction with the Testream service
|
|
17
|
+
|
|
18
|
+
OWNERSHIP:
|
|
19
|
+
The Software is licensed, not sold. This license does not grant you any rights
|
|
20
|
+
to trademarks or service marks.
|
|
21
|
+
|
|
22
|
+
TERMINATION:
|
|
23
|
+
This license is effective until terminated. Your rights under this license will
|
|
24
|
+
terminate automatically without notice if you fail to comply with any term of
|
|
25
|
+
this license.
|
|
26
|
+
|
|
27
|
+
DISCLAIMER:
|
|
28
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
30
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# @testream/cypress-reporter
|
|
2
|
+
|
|
3
|
+
Run Cypress tests and send the results from your codebase to Jira via Testream.
|
|
4
|
+
|
|
5
|
+
- **Docs:** https://testream.github.io/docs/reporters/cypress
|
|
6
|
+
- **Docs repository:** https://github.com/testream/docs
|
|
7
|
+
|
|
8
|
+
## Quick Start
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npx @testream/cypress-reporter -p PROJ -k $TESTREAM_API_KEY
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This command runs your Cypress tests and uploads the results so they show up in Jira.
|
|
15
|
+
|
|
16
|
+
For CLI options and CI examples, see https://testream.github.io/docs/reporters/cypress.
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"","sourceRoot":"","sources":["file:///home/runner/work/jira-test-manager/jira-test-manager/packages/cypress-reporter/src/cli.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"","sourceRoot":"","sources":["file:///home/runner/work/jira-test-manager/jira-test-manager/packages/cypress-reporter/src/cypress-parser.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAsB,oBAAoB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAiB5F"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @testream/cypress-reporter
|
|
3
|
+
*
|
|
4
|
+
* CLI tool to run Cypress tests with cypress-ctrf-json-reporter,
|
|
5
|
+
* and upload results to Testream for Jira integration.
|
|
6
|
+
*/
|
|
7
|
+
export { detectCypressVersion } from './cypress-parser';
|
|
8
|
+
export { uploadToApi, detectCIContext, detectGitContext } from './uploader';
|
|
9
|
+
export type * from './types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"","sourceRoot":"","sources":["file:///home/runner/work/jira-test-manager/jira-test-manager/packages/cypress-reporter/src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC5E,mBAAmB,SAAS,CAAC"}
|