From 35395d15a204ea8948adc9a54fae0fa0b9cfde21 Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Mon, 27 Jan 2020 20:37:54 +0100 Subject: [PATCH] Add missing . for chain method --- cypress/integration/common/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/common/post.js b/cypress/integration/common/post.js index 2a1dbad54..064c84cb5 100644 --- a/cypress/integration/common/post.js +++ b/cypress/integration/common/post.js @@ -53,7 +53,7 @@ Then("the editor should be cleared", () => { Then("it should create a mention in the CommentForm", () => { cy.get(".ProseMirror a") .should('have.class', 'mention') - should('contain', '@peter-pan') + .should('contain', '@peter-pan') }) When("I open the content menu of post {string}", (title)=> {