mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Fix Report.feature
This commit is contained in:
parent
933e092549
commit
8c7e3708a4
@ -121,7 +121,11 @@ Given('somebody reported the following posts:', table => {
|
|||||||
cy.factory()
|
cy.factory()
|
||||||
.create('User', submitter)
|
.create('User', submitter)
|
||||||
.authenticateAs(submitter)
|
.authenticateAs(submitter)
|
||||||
.create('Report', {
|
.mutate(`mutation($id: ID!, $description: String!) {
|
||||||
|
report(description: $description, id: $id) {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
}`, {
|
||||||
id,
|
id,
|
||||||
description: 'Offensive content'
|
description: 'Offensive content'
|
||||||
})
|
})
|
||||||
|
|||||||
@ -15,7 +15,6 @@ Feature: Report and Moderate
|
|||||||
| authorId | id | title | content |
|
| authorId | id | title | content |
|
||||||
| u67 | p1 | The Truth about the Holocaust | It never existed! |
|
| u67 | p1 | The Truth about the Holocaust | It never existed! |
|
||||||
|
|
||||||
|
|
||||||
Scenario Outline: Report a post from various pages
|
Scenario Outline: Report a post from various pages
|
||||||
Given I am logged in with a "user" role
|
Given I am logged in with a "user" role
|
||||||
When I see David Irving's post on the <Page>
|
When I see David Irving's post on the <Page>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user