Skip to content

Commit

Permalink
put the test skips back in
Browse files Browse the repository at this point in the history
  • Loading branch information
klarstrup committed Mar 4, 2022
1 parent 360a6a9 commit a7d64e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/tests/query.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ describe('query', () => {
expect(initialDataUpdatedAtSpy).toHaveBeenCalled()
})

test('short cacheTime should not let a query self-reference to remain in memory', async () => {
test.skip('short cacheTime should not let a query self-reference to remain in memory', async () => {
let query

query = new QueryObserver(new QueryClient(), {
Expand All @@ -938,7 +938,7 @@ describe('query', () => {
expect(query).toBe(null)
expect(weakQuery.deref()).toBeUndefined()
})
test('long cacheTime should not let a query self-reference to remain in memory', async () => {
test.skip('long cacheTime should not let a query self-reference to remain in memory', async () => {
let query

query = new QueryObserver(new QueryClient(), {
Expand Down

0 comments on commit a7d64e2

Please sign in to comment.