qagentic-reporter 0.1.3 → 0.1.5
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/dist/cypress/index.d.mts +2 -29
- package/dist/cypress/index.d.ts +2 -29
- package/dist/cypress/simple-setup.d.mts +29 -0
- package/dist/cypress/simple-setup.d.ts +29 -0
- package/dist/cypress/simple-setup.js +684 -0
- package/dist/cypress/simple-setup.js.map +1 -0
- package/dist/cypress/simple-setup.mjs +655 -0
- package/dist/cypress/simple-setup.mjs.map +1 -0
- package/package.json +6 -1
package/dist/cypress/index.d.mts
CHANGED
|
@@ -1,32 +1,5 @@
|
|
|
1
1
|
export { S as Severity, b as Status, c as Step, u as attach, x as attachJson, w as attachScreenshot, y as attachText, e as epic, f as feature, l as label, g as severity, s as step, d as story, t as tag } from '../attachments-B2zaEsD5.mjs';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* QAagentic Cypress - Simplified Setup
|
|
5
|
-
*
|
|
6
|
-
* One-line integration for Cypress projects
|
|
7
|
-
* No complex configuration needed!
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```typescript
|
|
11
|
-
* // cypress.config.ts - Just add this one line!
|
|
12
|
-
* import { setupQAgentic } from '@qagentic/reporter/cypress/simple-setup';
|
|
13
|
-
*
|
|
14
|
-
* export default defineConfig({
|
|
15
|
-
* e2e: {
|
|
16
|
-
* setupNodeEvents(on, config) {
|
|
17
|
-
* setupQAgentic(on, config); // That's it!
|
|
18
|
-
* return config;
|
|
19
|
-
* },
|
|
20
|
-
* },
|
|
21
|
-
* });
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
/**
|
|
25
|
-
* Simplified QAagentic setup for Cypress
|
|
26
|
-
* Auto-detects configuration from environment variables
|
|
27
|
-
* Zero manual configuration needed!
|
|
28
|
-
*/
|
|
29
|
-
declare function setupQAgentic(on: any, config: any): void;
|
|
2
|
+
export { default as setupQAgentic } from './simple-setup.mjs';
|
|
30
3
|
|
|
31
4
|
/**
|
|
32
5
|
* QAagentic Cypress Plugin
|
|
@@ -120,4 +93,4 @@ declare function qagentic(on: CypressPluginEvents, config: CypressPluginConfig,
|
|
|
120
93
|
*/
|
|
121
94
|
declare function registerCommands(): void;
|
|
122
95
|
|
|
123
|
-
export { type CypressPluginOptions, qagentic as default, qagentic, registerCommands
|
|
96
|
+
export { type CypressPluginOptions, qagentic as default, qagentic, registerCommands };
|
package/dist/cypress/index.d.ts
CHANGED
|
@@ -1,32 +1,5 @@
|
|
|
1
1
|
export { S as Severity, b as Status, c as Step, u as attach, x as attachJson, w as attachScreenshot, y as attachText, e as epic, f as feature, l as label, g as severity, s as step, d as story, t as tag } from '../attachments-B2zaEsD5.js';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* QAagentic Cypress - Simplified Setup
|
|
5
|
-
*
|
|
6
|
-
* One-line integration for Cypress projects
|
|
7
|
-
* No complex configuration needed!
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```typescript
|
|
11
|
-
* // cypress.config.ts - Just add this one line!
|
|
12
|
-
* import { setupQAgentic } from '@qagentic/reporter/cypress/simple-setup';
|
|
13
|
-
*
|
|
14
|
-
* export default defineConfig({
|
|
15
|
-
* e2e: {
|
|
16
|
-
* setupNodeEvents(on, config) {
|
|
17
|
-
* setupQAgentic(on, config); // That's it!
|
|
18
|
-
* return config;
|
|
19
|
-
* },
|
|
20
|
-
* },
|
|
21
|
-
* });
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
/**
|
|
25
|
-
* Simplified QAagentic setup for Cypress
|
|
26
|
-
* Auto-detects configuration from environment variables
|
|
27
|
-
* Zero manual configuration needed!
|
|
28
|
-
*/
|
|
29
|
-
declare function setupQAgentic(on: any, config: any): void;
|
|
2
|
+
export { default as setupQAgentic } from './simple-setup.js';
|
|
30
3
|
|
|
31
4
|
/**
|
|
32
5
|
* QAagentic Cypress Plugin
|
|
@@ -120,4 +93,4 @@ declare function qagentic(on: CypressPluginEvents, config: CypressPluginConfig,
|
|
|
120
93
|
*/
|
|
121
94
|
declare function registerCommands(): void;
|
|
122
95
|
|
|
123
|
-
export { type CypressPluginOptions, qagentic as default, qagentic, registerCommands
|
|
96
|
+
export { type CypressPluginOptions, qagentic as default, qagentic, registerCommands };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* QAagentic Cypress - Simplified Setup
|
|
3
|
+
*
|
|
4
|
+
* One-line integration for Cypress projects
|
|
5
|
+
* No complex configuration needed!
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```typescript
|
|
9
|
+
* // cypress.config.ts - Just add this one line!
|
|
10
|
+
* import { setupQAgentic } from '@qagentic/reporter/cypress/simple-setup';
|
|
11
|
+
*
|
|
12
|
+
* export default defineConfig({
|
|
13
|
+
* e2e: {
|
|
14
|
+
* setupNodeEvents(on, config) {
|
|
15
|
+
* setupQAgentic(on, config); // That's it!
|
|
16
|
+
* return config;
|
|
17
|
+
* },
|
|
18
|
+
* },
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
/**
|
|
23
|
+
* Simplified QAagentic setup for Cypress
|
|
24
|
+
* Auto-detects configuration from environment variables
|
|
25
|
+
* Zero manual configuration needed!
|
|
26
|
+
*/
|
|
27
|
+
declare function setupQAgentic(on: any, config: any): void;
|
|
28
|
+
|
|
29
|
+
export { setupQAgentic as default, setupQAgentic };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* QAagentic Cypress - Simplified Setup
|
|
3
|
+
*
|
|
4
|
+
* One-line integration for Cypress projects
|
|
5
|
+
* No complex configuration needed!
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```typescript
|
|
9
|
+
* // cypress.config.ts - Just add this one line!
|
|
10
|
+
* import { setupQAgentic } from '@qagentic/reporter/cypress/simple-setup';
|
|
11
|
+
*
|
|
12
|
+
* export default defineConfig({
|
|
13
|
+
* e2e: {
|
|
14
|
+
* setupNodeEvents(on, config) {
|
|
15
|
+
* setupQAgentic(on, config); // That's it!
|
|
16
|
+
* return config;
|
|
17
|
+
* },
|
|
18
|
+
* },
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
/**
|
|
23
|
+
* Simplified QAagentic setup for Cypress
|
|
24
|
+
* Auto-detects configuration from environment variables
|
|
25
|
+
* Zero manual configuration needed!
|
|
26
|
+
*/
|
|
27
|
+
declare function setupQAgentic(on: any, config: any): void;
|
|
28
|
+
|
|
29
|
+
export { setupQAgentic as default, setupQAgentic };
|