We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e50cee commit 22834f2Copy full SHA for 22834f2
packages/utils/test/stats.test.ts
@@ -134,6 +134,10 @@ describe('cacheable stats', () => {
134
expect(stats.vsize).toBe(6);
135
expect(stats.ksize).toBe(6);
136
expect(stats.count).toBe(1);
137
+ stats.resetStoreValues();
138
+ expect(stats.vsize).toBe(0);
139
+ expect(stats.ksize).toBe(0);
140
+ expect(stats.count).toBe(0);
141
});
142
test('should get the rough size of the stats object', () => {
143
const stats = new Stats();
0 commit comments