fix: lint warnings
Some checks failed
Build / build (pull_request) Failing after 49s
Lint / Lint Code (pull_request) Failing after 38s
Test / Svelte Checks (pull_request) Failing after 44s

This commit is contained in:
Ilia Mashkov
2026-01-14 15:14:58 +03:00
parent 3302e4a012
commit 7678ab271d
6 changed files with 11 additions and 17 deletions

View File

@@ -7,7 +7,6 @@ import {
vi,
} from 'vitest';
import {
type CacheItemInternalState,
type CacheOptions,
createCollectionCache,
} from './collectionCache';
@@ -152,7 +151,7 @@ describe('createCollectionCache', () => {
it('resets cache statistics', () => {
cache.set('key1', 100); // This increments hits
const statsBefore = cache.getStats();
const _statsBefore = cache.getStats();
cache.clear();
const statsAfter = cache.getStats();