Skip to content

Instantly share code, notes, and snippets.

@AugustoCalaca
Last active March 22, 2023 23:43
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AugustoCalaca/60be39bc6825d01281a110e108063af0 to your computer and use it in GitHub Desktop.
Save AugustoCalaca/60be39bc6825d01281a110e108063af0 to your computer and use it in GitHub Desktop.
An example of how to test graphql subscriptions with jest
import { graphql, subscribe, parse } from 'graphql';
import {
connectMongoose,
disconnectMongoose,
clearDbAndRestartCounters,
getContext,
} from '../../../../../test/helpers';
import { schema } from '../../../../schema/schema';
beforeAll(connectMongoose);
beforeEach(clearDbAndRestartCounters);
afterAll(disconnectMongoose);
describe('UserAdded Subscription', () => {
it('should complete a user subscription after UserAddMutation', async () => {
const mutation = `
mutation M($input: UserAddInput!) {
UserAdd(input: $input) {
token
error
}
}
`;
const subscription = `
subscription S($input: UserAddedInput!) {
UserAdded(input: $input) {
user {
name
username
email
isActive
followers {
totalCount
}
following {
totalCount
}
}
}
}
`;
const rootValue = {};
const contextValue = await getContext({});
const variablesMutation = {
input: {
name: 'Awesome Name',
username: 'awesomeusername',
email: 'awesome@email.com',
password: '12345',
},
};
const variablesSubscription = {
input: {},
};
const triggerSubscription = graphql(schema, mutation, rootValue, contextValue, variablesMutation);
const result = await subscribe(schema, parse(subscription), triggerSubscription, contextValue, variablesSubscription);
expect((await result.next()).value.data).toEqual({
UserAdded: {
user: {
name: 'Awesome Name',
username: 'awesomeusername',
email: null,
isActive: true,
followers: {
totalCount: 0,
},
following: {
totalCount: 0,
},
},
},
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment