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.
22 lines
699 B
JavaScript
22 lines
699 B
JavaScript
Cypress.Commands.add('createArticle', () => {
|
|
cy.request({
|
|
url: 'https://conduit.productionready.io/api/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: []
|
|
}
|
|
}
|
|
})
|
|
.then((response) => {
|
|
expect(response.status).to.eq(200)
|
|
return response.body.article.slug
|
|
})
|
|
})
|