newman-reporter-dashboard-wrapper 1.0.0 → 1.0.2
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/.newman-history.json +65 -0
- package/package.json +2 -1
- package/readme.md +5 -1
|
@@ -452,5 +452,70 @@
|
|
|
452
452
|
]
|
|
453
453
|
}
|
|
454
454
|
]
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"runId": "RUN-211898",
|
|
458
|
+
"collectionName": "Public API Test Suite",
|
|
459
|
+
"timestamp": "2026-06-25 13:51:31",
|
|
460
|
+
"totalRequests": 2,
|
|
461
|
+
"passedAssertions": 7,
|
|
462
|
+
"failedAssertions": 1,
|
|
463
|
+
"avgResponseTime": 311,
|
|
464
|
+
"status": "Failure",
|
|
465
|
+
"requests": [
|
|
466
|
+
{
|
|
467
|
+
"id": "c19b5bc4-e2e8-4a05-9dff-f3bee07237ae",
|
|
468
|
+
"name": "Get All Posts",
|
|
469
|
+
"method": "GET",
|
|
470
|
+
"url": "https://jsonplaceholder.typicode.com/posts",
|
|
471
|
+
"statusCode": 200,
|
|
472
|
+
"responseTime": 300,
|
|
473
|
+
"assertions": [
|
|
474
|
+
{
|
|
475
|
+
"name": "Status code is 200",
|
|
476
|
+
"passed": false,
|
|
477
|
+
"errorMessage": "expected response to have status code 201 but got 200"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"name": "Response time is within acceptable SLA limits",
|
|
481
|
+
"passed": true
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "Response is an array containing posts",
|
|
485
|
+
"passed": true
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"name": "First post object complies with data schema contract",
|
|
489
|
+
"passed": true
|
|
490
|
+
}
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"id": "4b219070-4914-4d1b-8087-7f32450bf54e",
|
|
495
|
+
"name": "Create New Post",
|
|
496
|
+
"method": "POST",
|
|
497
|
+
"url": "https://jsonplaceholder.typicode.com/posts",
|
|
498
|
+
"statusCode": 201,
|
|
499
|
+
"responseTime": 322,
|
|
500
|
+
"assertions": [
|
|
501
|
+
{
|
|
502
|
+
"name": "Status code is 201 Created",
|
|
503
|
+
"passed": true
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "Response headers confirm JSON payload structure",
|
|
507
|
+
"passed": true
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"name": "Response returns generated resource identity",
|
|
511
|
+
"passed": true
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"name": "Response contains the complete mirrored request body data",
|
|
515
|
+
"passed": true
|
|
516
|
+
}
|
|
517
|
+
]
|
|
518
|
+
}
|
|
519
|
+
]
|
|
455
520
|
}
|
|
456
521
|
]
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "newman-reporter-dashboard-wrapper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Historical trend reporting dashboard for Postman/Newman executions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
+
"license": "MIT",
|
|
7
8
|
"bin": {
|
|
8
9
|
"newman-dashboard": "./dist/index.js"
|
|
9
10
|
},
|
package/readme.md
CHANGED
|
@@ -17,4 +17,8 @@ Open your terminal and install the orchestrator utility globally:
|
|
|
17
17
|
npm install -g newman-reporter-dashboard-orchestrator
|
|
18
18
|
|
|
19
19
|
How to run the newman and invoke dashboard
|
|
20
|
-
newman-dashboard my_postman_collection.json
|
|
20
|
+
newman-dashboard my_postman_collection.json
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+

|