This commit is contained in:
Matt Rider 2019-04-16 23:37:11 -03:00
parent dd9383ef40
commit c519bff743

View File

@ -28,9 +28,9 @@ describe('CreateComment', () => {
` `
describe('unauthenticated', () => { describe('unauthenticated', () => {
it('throws authorization error', async () => { it('throws authorization error', async () => {
variables = { variables = {
id: 'c1', id: 'c1',
content: "I'm not authorised to comment" content: 'I\'m not authorised to comment'
} }
client = new GraphQLClient(host) client = new GraphQLClient(host)
await expect(client.request(mutation, variables)).rejects.toThrow('Not Authorised') await expect(client.request(mutation, variables)).rejects.toThrow('Not Authorised')
@ -47,16 +47,16 @@ describe('CreateComment', () => {
it('creates a post', async () => { it('creates a post', async () => {
variables = { variables = {
id: 'c1', id: 'c1',
content: "I'm authorised to comment" content: 'I\'m authorised to comment'
} }
const expected = { const expected = {
CreateComment: { CreateComment: {
id: 'c1', id: 'c1',
content: "I'm authorised to comment" content: 'I\'m authorised to comment'
} }
} }
await expect(client.request(mutation, variables)).resolves.toMatchObject(expected) await expect(client.request(mutation, variables)).resolves.toMatchObject(expected)
}) })
}) })
}) })