diff options
Diffstat (limited to 'cypress/e2e')
-rw-r--r-- | cypress/e2e/event.cy.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/event.cy.ts b/cypress/e2e/event.cy.ts index 46e35fb..78cc2ca 100644 --- a/cypress/e2e/event.cy.ts +++ b/cypress/e2e/event.cy.ts @@ -113,7 +113,7 @@ describe("Events", () => { cy.request({ url: `/${this.eventID}/featured`, headers: { - Accept: "application/activity+json", + Accept: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"', }, }).then((response) => { expect(response.body).to.have.property("@context"); @@ -139,7 +139,7 @@ describe("Events", () => { this.eventID }@${Cypress.env("CYPRESS_DOMAIN")}`, headers: { - Accept: "application/activity+json", + Accept: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"', }, }).then((response) => { expect(response.body).to.have.property("subject"); |