added new tests and some improvements
parent
440bd5e254
commit
83044407b1
@ -1,3 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
title: '[ng-bind="::$ctrl.article.title"]'
|
title: '[ng-bind="::$ctrl.article.title"]',
|
||||||
|
body: '[ng-bind-html*="ctrl.article.body"] p',
|
||||||
|
editButton: 'h1 + article-actions [ui-sref*="ctrl.article.slug"]',
|
||||||
|
deleteButton: 'h1 + article-actions .btn-outline-danger'
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
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
|
||||||
|
})
|
||||||
|
})
|
@ -1,25 +0,0 @@
|
|||||||
// ***********************************************
|
|
||||||
// This example commands.js shows you how to
|
|
||||||
// create various custom commands and overwrite
|
|
||||||
// existing commands.
|
|
||||||
//
|
|
||||||
// For more comprehensive examples of custom
|
|
||||||
// commands please read more here:
|
|
||||||
// https://on.cypress.io/custom-commands
|
|
||||||
// ***********************************************
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is a parent command --
|
|
||||||
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is a child command --
|
|
||||||
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is a dual command --
|
|
||||||
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This will overwrite an existing command --
|
|
||||||
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
|
Loading…
Reference in New Issue