small updates

master
helenanull 4 years ago
parent 90b790a631
commit bb237f5712

@ -3,7 +3,7 @@ import article from '../selectors/article.sel'
import home from '../selectors/home.sel' import home from '../selectors/home.sel'
describe('Article', () => { describe('Article', () => {
const articleLink = 'https://github.com/helenanull/cypress-example' const readMoreLink = 'https://github.com/helenanull/cypress-example'
beforeEach(() => { beforeEach(() => {
cy.register().then((email) => { cy.register().then((email) => {
@ -16,7 +16,7 @@ describe('Article', () => {
cy.visit('/editor/') cy.visit('/editor/')
cy.get(editor.titleField).type('My post title') cy.get(editor.titleField).type('My post title')
cy.get(editor.aboutField).type('Cypress') cy.get(editor.aboutField).type('Cypress')
cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${articleLink}`) cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${readMoreLink}`)
cy.get(editor.publishButton).click() cy.get(editor.publishButton).click()
cy.get(article.title).should('be.visible') cy.get(article.title).should('be.visible')
.and('have.text', 'My post title') .and('have.text', 'My post title')
@ -26,7 +26,7 @@ describe('Article', () => {
cy.visit('/editor/') cy.visit('/editor/')
cy.get(editor.titleField).type('My post title') cy.get(editor.titleField).type('My post title')
cy.get(editor.aboutField).type('Cypress') cy.get(editor.aboutField).type('Cypress')
cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${articleLink}`) cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${readMoreLink}`)
cy.get(editor.tagsField).type('cypress{enter}') cy.get(editor.tagsField).type('cypress{enter}')
cy.get(editor.tagsField).should('have.value', '') cy.get(editor.tagsField).should('have.value', '')
cy.get(editor.addedTags).should('be.visible') cy.get(editor.addedTags).should('be.visible')
@ -57,16 +57,14 @@ describe('Article', () => {
// to check field value, use have.value not have.text // to check field value, use have.value not have.text
.and('have.value', 'My Cypress article') .and('have.value', 'My Cypress article')
cy.get(editor.aboutField).should('be.visible') cy.get(editor.aboutField).should('be.visible')
.and('have.value', articleLink) .and('have.value', readMoreLink)
cy.get(editor.bodyField) cy.get(editor.bodyField).clear()
.should('have.value', 'This article is created by createArticle Cypress command') .type(`Test can edit an article. ${readMoreLink}`)
.clear()
.type('This is modified body')
cy.get(editor.publishButton).click() cy.get(editor.publishButton).click()
cy.url().should('contain', '/article/my-cypress-article-') cy.url().should('contain', '/article/my-cypress-article-')
cy.get(article.title).should('be.visible') cy.get(article.title).should('be.visible')
cy.get(article.body).should('be.visible') cy.get(article.body).should('be.visible')
.and('have.text', 'This is modified body') .and('have.text', `Test can edit an article. ${readMoreLink}`)
}) })
it('can delete an article', () => { it('can delete an article', () => {

@ -1,5 +1,6 @@
Cypress.Commands.add('createArticle', () => { Cypress.Commands.add('createArticle', () => {
const apiUrl = Cypress.env('apiUrl') const apiUrl = Cypress.env('apiUrl')
const link = 'https://github.com/helenanull/cypress-example'
cy.request({ cy.request({
url: `${apiUrl}/articles`, url: `${apiUrl}/articles`,
@ -9,10 +10,10 @@ Cypress.Commands.add('createArticle', () => {
}, },
body: { body: {
article: { article: {
title: 'My Cypress article', title: 'Article created by Cypress test',
description: 'https://github.com/helenanull/cypress-example', description: link,
body: 'This article is created by createArticle Cypress command', body: `This article is created by createArticle Cypress command. See more: ${link}`,
tagList: ['cypress', 'test-automation', 'simple'] tagList: ['cypress', 'simple', 'test-automation']
} }
} }
}) })

Loading…
Cancel
Save