12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import { graphql } from './graphql'
|
|
|
|
test('exports supported GraphQL operation types', () => {
|
|
expect(graphql).toBeDefined()
|
|
expect(Object.keys(graphql)).toEqual([
|
|
'query',
|
|
'mutation',
|
|
'operation',
|
|
'link',
|
|
])
|
|
})
|