diff --git a/package.json b/package.json index e58c4441f..dd9bc149a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "swr", - "version": "0.1.7", + "version": "0.1.8", "description": "React Hooks library for remote data fetching", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/test/use-swr.test.tsx b/test/use-swr.test.tsx index 1406928ba..383d1f3cd 100644 --- a/test/use-swr.test.tsx +++ b/test/use-swr.test.tsx @@ -639,7 +639,7 @@ describe('useSWR - suspense', () => { expect(container.textContent).toMatchInlineSnapshot(`"hello"`) }) - it('should throw errors', async () => { + it.only('should throw errors', async () => { function Section() { const { data } = useSWR( 'suspense-5',