test(server/rr): wraps up basic read receipts tests

This commit is contained in:
Dimitrie Stefanescu
2021-10-25 10:36:13 +01:00
parent cac9eaf073
commit 8dcffaae68
@@ -374,17 +374,6 @@ describe( 'GraphQL API Core @core-api', ( ) => {
expect( res.body.errors ).to.not.exist
expect( res.body.data.commitReceive ).to.equal( true )
let res2 = await sendRequest( userB.token, { query: 'mutation($input: CommitReceivedInput!) { commitReceive(input: $input) }' , variables: {
input: {
streamId: ts1,
commitId: c1.id,
sourceApplication: 'tests',
message: 'Irrelevant!'
}
}
} )
console.log( res2.body.errors )
let res3 = await sendRequest( null, { query: 'mutation($input: CommitReceivedInput!) { commitReceive(input: $input) }' , variables: {
input: {
streamId: ts1,
@@ -394,7 +383,10 @@ describe( 'GraphQL API Core @core-api', ( ) => {
}
}
} )
console.log( res3.body.errors )
expect( res3 ).to.be.json
expect( res3.body.errors ).to.exist
expect( res3.body.errors[0].extensions.code ).to.equal( 'FORBIDDEN' )
} )
it( 'Should delete a commit', async ( ) => {