diff --git a/packages/query-persist-client-core/src/__tests__/createPersister.test.ts b/packages/query-persist-client-core/src/__tests__/createPersister.test.ts index b8b1de807b..8e385bc3da 100644 --- a/packages/query-persist-client-core/src/__tests__/createPersister.test.ts +++ b/packages/query-persist-client-core/src/__tests__/createPersister.test.ts @@ -436,7 +436,7 @@ describe('createPersister', () => { }) describe('persistQuery', () => { - it('Should properly persist basic query', async () => { + it('should properly persist basic query', async () => { const storage = getFreshStorage() const { persister, query, queryHash, queryKey, storageKey } = setupPersister(['foo'], { @@ -458,7 +458,7 @@ describe('createPersister', () => { }) }) - it('Should skip persistence if storage is not provided', async () => { + it('should skip persistence if storage is not provided', async () => { const serializeMock = vi.fn() const { persister, query } = setupPersister(['foo'], { storage: null, @@ -473,7 +473,7 @@ describe('createPersister', () => { }) describe('persistQueryByKey', () => { - it('Should skip persistence if storage is not provided', async () => { + it('should skip persistence if storage is not provided', async () => { const serializeMock = vi.fn() const { persister, client, queryKey } = setupPersister(['foo'], { storage: null, @@ -500,7 +500,7 @@ describe('createPersister', () => { expect(serializeMock).toHaveBeenCalledTimes(0) }) - it('Should properly persist basic query', async () => { + it('should properly persist basic query', async () => { const storage = getFreshStorage() const { persister, client, queryHash, queryKey, storageKey } = setupPersister(['foo'], {