Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add missing JSX pragma to preact tests

+4
+1
packages/preact-urql/src/components/Mutation.test.tsx
··· 1 + /* @jsx h */ 1 2 import { h } from 'preact'; 2 3 import { act, cleanup, render } from '@testing-library/preact'; 3 4 import { pipe, fromValue, delay } from 'wonka';
+1
packages/preact-urql/src/components/Query.test.tsx
··· 1 + /* @jsx h */ 1 2 import { h } from 'preact'; 2 3 import { cleanup, render } from '@testing-library/preact'; 3 4 import { map, interval, pipe } from 'wonka';
+1
packages/preact-urql/src/components/Subscription.test.tsx
··· 1 + /* @jsx h */ 1 2 import { h } from 'preact'; 2 3 import { cleanup, render } from '@testing-library/preact'; 3 4 import { map, interval, pipe } from 'wonka';
+1
scripts/eslint/preset.js
··· 37 37 '@typescript-eslint/array-type': 'off', 38 38 'react-hooks/rules-of-hooks': 'error', 39 39 'react-hooks/exhaustive-deps': 'warn', 40 + 'react/react-in-jsx-scope': 'off', 40 41 'react/prop-types': 'off', 41 42 'react/no-children-prop': 'off', 42 43 'sort-keys': 'off',