Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Run Playwright tests
run: npx playwright test fakestore_coverage_api.spec.js
run: npx playwright test servrest_api.spec.js
- name: Upload Coverage report
uses: actions/upload-artifact@v4
if: always()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api-coverage-tracker",
"version": "2.0.3",
"version": "2.0.4",
"description": "A universal library for tracking API coverage against OpenAPI/Swagger specifications from URL or local file. Supports Axis, Fetch, Playwright and manual registry of the responses",
"main": "./utils/api-coverage.js",
"types": "./utils/api-coverage.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions reports/Fakestoreapiservice.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@
{
"createdAt": "2025-06-09T12:53:58.974Z",
"totalCoverage": 100
},
{
"createdAt": "2026-01-25T20:43:46.217Z",
"totalCoverage": 77.5
}
]
4 changes: 4 additions & 0 deletions reports/Petsplaywrightapiservice.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@
{
"createdAt": "2026-01-18T19:25:40.391Z",
"totalCoverage": 56
},
{
"createdAt": "2026-01-25T20:43:24.173Z",
"totalCoverage": 56
}
]
4 changes: 4 additions & 0 deletions reports/ServeRestapiservice.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@
{
"createdAt": "2025-06-09T06:57:06.957Z",
"totalCoverage": 74.8
},
{
"createdAt": "2026-01-25T20:44:07.455Z",
"totalCoverage": 74.8
}
]
8 changes: 4 additions & 4 deletions reports/history.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"method": "GET",
"path": "/products/{id}",
"statuses": {
"200": 3
"200": 1
},
"queryParams": []
},
Expand All @@ -27,7 +27,7 @@
"method": "GET",
"path": "/products",
"statuses": {
"200": 8
"200": 1
},
"queryParams": [
"limit",
Expand All @@ -38,7 +38,7 @@
"method": "POST",
"path": "/products",
"statuses": {
"200": 2
"200": 1
},
"queryParams": []
},
Expand Down Expand Up @@ -202,7 +202,7 @@
"method": "GET",
"path": "/pet/findByStatus",
"statuses": {
"200": 1
"200": 2
},
"queryParams": [
"status"
Expand Down
Loading