Skip to content

Commit

Permalink
chore(core): Temporarily disable flaky test until minor merge
Browse files Browse the repository at this point in the history
This needs to be disabled until we merge 12e2db0
  • Loading branch information
michaelbromley committed Feb 11, 2025
1 parent d59cdff commit 23721a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/core/e2e/cache-service-default.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ describe('CacheService with DefaultCachePlugin (sql)', () => {

it('sets a key with ttl', () => setsAKeyWithTtl(cacheService, ttlProvider));

it('sets a key with sub-second ttl', () => setsAKeyWithSubSecondTtl(cacheService, ttlProvider));
// TODO: Re-enable this upon merging in the v3.2 changes. This test currently is flaky due to
// a missing precision on the CacheItem.expiresAt field. However, since the fix involves a minor
// breaking change, it is being held back until v3.2.
it.skip('sets a key with sub-second ttl', () => setsAKeyWithSubSecondTtl(cacheService, ttlProvider));

it('evicts the oldest key when cache is full', () => evictsTheOldestKeyWhenCacheIsFull(cacheService));

Expand Down

0 comments on commit 23721a2

Please sign in to comment.