···11-// Jest Snapshot v1, https://goo.gl/fbAQLP
11+// Vitest Snapshot v1
2233-exports[`Store with storage should be able to persist embedded data 1`] = `
44-Object {
33+exports[`Store with storage > should be able to persist embedded data 1`] = `
44+{
55 "Query%2eappointment({\\"id\\":\\"1\\"}).__typename": "\\"Appointment\\"",
66 "Query%2eappointment({\\"id\\":\\"1\\"}).info": "\\"urql meeting\\"",
77 "Query.appointment({\\"id\\":\\"1\\"})": ":\\"Query.appointment({\\\\\\"id\\\\\\":\\\\\\"1\\\\\\"})\\"",
88}
99`;
10101111-exports[`Store with storage should be able to store and rehydrate data 1`] = `
1212-Object {
1111+exports[`Store with storage > should be able to store and rehydrate data 1`] = `
1212+{
1313 "Appointment:1.__typename": "\\"Appointment\\"",
1414 "Appointment:1.id": "\\"1\\"",
1515 "Appointment:1.info": "\\"urql meeting\\"",
···11import { gql } from '@urql/core';
22+import { it, expect, afterEach } from 'vitest';
23import { query, write, writeOptimistic } from '../operations';
34import * as InMemoryData from '../store/data';
45import { Store } from '../store';
···11-// Jest Snapshot v1, https://goo.gl/fbAQLP
11+// Vitest Snapshot v1
2233-exports[`CombinedError behaves like a normal Error 1`] = `"[Network] test"`;
33+exports[`CombinedError > behaves like a normal Error 1`] = `"[Network] test"`;
+1
packages/core/src/utils/error.test.ts
···11+import { describe, it, expect } from 'vitest';
12import { CombinedError } from './error';
2334describe('CombinedError', () => {
+1
packages/core/src/utils/maskTypename.test.ts
···11+import { it, expect } from 'vitest';
12import { maskTypename } from './maskTypename';
2334it('strips typename from flat objects', () => {
···11import { gql } from '@urql/core';
22import { renderHook } from '@testing-library/react-hooks';
33+import { it, expect } from 'vitest';
34import { useRequest } from './useRequest';
4556it('preserves instance of request when key has not changed', () => {