From 01e94bc82b26dfcf0d757a7711a85adcadff9c1a Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 17 Jul 2023 10:25:29 +0300 Subject: [PATCH] fix articles changed response code --- cypress/support/article.cmd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/article.cmd.js b/cypress/support/article.cmd.js index 8d34432..a253a93 100644 --- a/cypress/support/article.cmd.js +++ b/cypress/support/article.cmd.js @@ -18,7 +18,7 @@ Cypress.Commands.add('createArticle', () => { } }) .then((response) => { - expect(response.status).to.eq(200) + expect(response.status).to.eq(201) return response.body.article.slug }) })