Skip to content

Commit

Permalink
Fix test metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryuni committed Dec 26, 2024
1 parent 7c6a0c4 commit 7c45e38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package/tests/basic/persisted-component.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ await defineTests({
},
],
metricsAfter: {
'fs-cache-hit': 4,
'fs-cache-miss': 0,
'fs-cache-hit': 0,
'fs-cache-miss': 2,
'in-memory-cache-hit': 4,
'in-memory-cache-miss': 4,
},
Expand Down
6 changes: 3 additions & 3 deletions package/tests/basic/persisted-page-only.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ await defineTests({
},
],
metricsAfter: {
'fs-cache-hit': 14,
'fs-cache-miss': 0,
'fs-cache-hit': 10,
'fs-cache-miss': 2,
'in-memory-cache-hit': 0,
'in-memory-cache-miss': 14,
},
Expand All @@ -42,7 +42,7 @@ await defineTests({
},
],
metricsAfter: {
'fs-cache-hit': 14,
'fs-cache-hit': 12,
'fs-cache-miss': 0,
'in-memory-cache-hit': 0,
'in-memory-cache-miss': 14,
Expand Down

0 comments on commit 7c45e38

Please sign in to comment.