You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
750 B
JavaScript

Cypress.Commands.add('createArticle', () => {
const apiUrl = Cypress.env('apiUrl')
cy.request({
url: `${apiUrl}/articles`,
method: 'POST',
headers: {
authorization: `Token ${window.localStorage.getItem('jwtToken')}`
},
body: {
article: {
title: 'My Cypress article',
description: 'https://github.com/helenanull/cypress-example',
body: 'This article is created by createArticle Cypress command',
tagList: ['cypress', 'test-automation', 'simple']
}
}
})
.then((response) => {
expect(response.status).to.eq(200)
return response.body.article.slug
})
})