Skip to content

Commit

Permalink
Revert "Skip failing tests because of upstream"
Browse files Browse the repository at this point in the history
This reverts commit 3286feb.
  • Loading branch information
eddeee888 committed Jan 18, 2025
1 parent dd2b0bd commit e39b555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/typescript-graphql-request/src/main.spec.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { getPeople } from './main';

describe('TypeScript GraphQL Request tests', () => {
it.skip('works without variables', async () => {
it('works without variables', async () => {
const result = await getPeople();
expect(result?.map(o => o?.node?.name)).toContain('Luke Skywalker');
});

it.skip('returns first 3 entries', async () => {
it('returns first 3 entries', async () => {
const result = await getPeople(3);
expect(result).toHaveLength(3);
});
Expand Down

0 comments on commit e39b555

Please sign in to comment.