mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Fix lint
This commit is contained in:
parent
dd9383ef40
commit
c519bff743
@ -28,9 +28,9 @@ describe('CreateComment', () => {
|
||||
`
|
||||
describe('unauthenticated', () => {
|
||||
it('throws authorization error', async () => {
|
||||
variables = {
|
||||
variables = {
|
||||
id: 'c1',
|
||||
content: "I'm not authorised to comment"
|
||||
content: 'I\'m not authorised to comment'
|
||||
}
|
||||
client = new GraphQLClient(host)
|
||||
await expect(client.request(mutation, variables)).rejects.toThrow('Not Authorised')
|
||||
@ -47,16 +47,16 @@ describe('CreateComment', () => {
|
||||
it('creates a post', async () => {
|
||||
variables = {
|
||||
id: 'c1',
|
||||
content: "I'm authorised to comment"
|
||||
content: 'I\'m authorised to comment'
|
||||
}
|
||||
const expected = {
|
||||
CreateComment: {
|
||||
id: 'c1',
|
||||
content: "I'm authorised to comment"
|
||||
content: 'I\'m authorised to comment'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
await expect(client.request(mutation, variables)).resolves.toMatchObject(expected)
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user