Skip to content

Commit 90a2c2d

Browse files
committed
chore
1 parent 7d4e1b4 commit 90a2c2d

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

packages/graphql/README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@ This solutions focuses on a _native_ svelte API using [svelte/store](https://sve
2222
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
2323

2424

25-
- [@svelkit/graphql](#svelkitgraphql)
26-
- [What?](#what)
27-
- [Why?](#why)
28-
- [Installation](#installation)
29-
- [Usage](#usage)
30-
- [Features](#features)
31-
- [Polyfills](#polyfills)
32-
- [License](#license)
25+
- [Installation](#installation)
26+
- [Usage](#usage)
27+
- [Features](#features)
28+
- [Polyfills](#polyfills)
29+
- [License](#license)
3330

3431
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
3532
<!-- prettier-ignore-end -->

packages/graphql/src/internal/get-operation.test.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { GraphQLOperationType } from '../types'
22

3-
import { minimize } from './minimize'
43
import { getOperation } from './get-operation'
54

65
const cases: [string, string, { type: GraphQLOperationType; name: string | undefined }][] = [
@@ -135,7 +134,6 @@ const cases: [string, string, { type: GraphQLOperationType; name: string | undef
135134
]
136135
test.each(cases)('%s', (_, gql, expected): void => {
137136
expect(getOperation(gql)).toStrictEqual(expected)
138-
expect(getOperation(minimize(gql))).toStrictEqual(expected)
139137
})
140138

141139
test('multiple operations', () => {

0 commit comments

Comments
 (0)