We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5724234 commit f5116a7Copy full SHA for f5116a7
examples/typescript-graphql-request/src/main.spec.ts
@@ -1,12 +1,12 @@
1
import { getPeople } from './main';
2
3
describe('TypeScript GraphQL Request tests', () => {
4
- it('works without variables', async () => {
+ it.skip('works without variables', async () => {
5
const result = await getPeople();
6
expect(result?.map(o => o?.node?.name)).toContain('Luke Skywalker');
7
});
8
9
- it('returns first 3 entries', async () => {
+ it.skip('returns first 3 entries', async () => {
10
const result = await getPeople(3);
11
expect(result).toHaveLength(3);
12
0 commit comments