more updates
parent
ec50a0a77b
commit
92b2208fee
@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"plugins": [
|
||||||
|
"cypress",
|
||||||
|
"chai-friendly"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"browser": true,
|
||||||
|
"cypress/globals": true
|
||||||
|
},
|
||||||
|
"extends": "airbnb",
|
||||||
|
"rules": {
|
||||||
|
"no-param-reassign": "off",
|
||||||
|
"prefer-destructuring": "off",
|
||||||
|
"no-use-before-define": [ 2, { "functions": false } ],
|
||||||
|
"object-shorthand": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"comma-dangle": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
"no-unused-expressions": 0,
|
||||||
|
"func-names": 0,
|
||||||
|
"chai-friendly/no-unused-expressions": 2,
|
||||||
|
"indent": [
|
||||||
|
"error",
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"linebreak-style": 0,
|
||||||
|
"quotes": [
|
||||||
|
"error",
|
||||||
|
"single"
|
||||||
|
],
|
||||||
|
"semi": [
|
||||||
|
"error",
|
||||||
|
"never"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"parserOptions": {
|
||||||
|
"ecmaFeatures": {
|
||||||
|
"experimentalObjectRestSpread": true,
|
||||||
|
"jsx": true
|
||||||
|
},
|
||||||
|
"sourceType": "module"
|
||||||
|
}
|
||||||
|
}
|
@ -1,9 +1,11 @@
|
|||||||
{
|
{
|
||||||
"baseUrl": "https://angular.realworld.io",
|
"baseUrl": "http://angularjs.realworld.io/#",
|
||||||
"numTestsKeptInMemory": 5,
|
"numTestsKeptInMemory": 5,
|
||||||
"defaultCommandTimeout": 10000,
|
"defaultCommandTimeout": 10000,
|
||||||
"experimentalFetchPolyfill": true,
|
"experimentalFetchPolyfill": true,
|
||||||
"env": {
|
"env": {
|
||||||
"device": "desktop"
|
"device": "desktop",
|
||||||
|
"email": "test@test.com",
|
||||||
|
"password": "Testtest1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,19 @@
|
|||||||
import editor from '../selectors/editor.sel'
|
import editor from '../selectors/editor.sel'
|
||||||
|
import article from '../selectors/article.sel'
|
||||||
|
|
||||||
describe.skip('Article', () => {
|
describe('Article', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
login()
|
cy.login()
|
||||||
visit('/editor')
|
cy.visit('/editor/')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('can create a new article', () => {
|
it('can create a new article', () => {
|
||||||
|
cy.get(editor.titleField).type('My post title')
|
||||||
|
cy.get(editor.aboutField).type('Cypress')
|
||||||
|
cy.get(editor.bodyField).type('Cypress is so cool awyeah')
|
||||||
|
cy.get(editor.tagsField).type('cypress, automation')
|
||||||
|
cy.get(editor.publishButton).click()
|
||||||
|
cy.get(article.title).should('be.visible')
|
||||||
|
.and('have.text', 'My post title')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
module.exports = {
|
||||||
|
title: '[ng-bind="::$ctrl.article.title"]'
|
||||||
|
}
|
@ -1,3 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
|
titleField: '[ng-model="$ctrl.article.title"]',
|
||||||
}
|
aboutField: '[ng-model="$ctrl.article.description"]',
|
||||||
|
bodyField: '[ng-model="$ctrl.article.body"]',
|
||||||
|
tagsField: '[ng-model="$ctrl.tagField"]',
|
||||||
|
publishButton: '[ng-click="$ctrl.submit()"]'
|
||||||
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
emailField = '[placeholder=Email]',
|
emailField: '[placeholder=Email]',
|
||||||
passwordField = '[placeholder=Password]',
|
passwordField: '[placeholder=Password]',
|
||||||
signInButton = '.btn',
|
signInButton: '.btn',
|
||||||
errorMessages = '.error-messages li'
|
errorMessages: '.error-messages li'
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
Cypress.Commands.add('login', (email = 'email', password = 'pass') => {
|
Cypress.Commands.add('login', (email = Cypress.env('email'), password = Cypress.env('password')) => {
|
||||||
//todo
|
cy.request({
|
||||||
})
|
// here we can't use just '/api/users/login' because baseUrl is different than API url
|
||||||
|
// if they are the same, then we can just use url: '/api/users/login' like in visit()
|
||||||
|
url: 'https://conduit.productionready.io/api/users/login',
|
||||||
|
method: 'POST',
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
email: email,
|
||||||
|
password: password
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).then((response) => {
|
||||||
|
expect(response.status).to.eq(200)
|
||||||
|
window.localStorage.setItem('jwtToken', response.body.user.token)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
@ -0,0 +1,20 @@
|
|||||||
|
Cypress.Commands.add('register', () => {
|
||||||
|
const username = `cy${Math.random().toString().slice(2, 11)}`
|
||||||
|
const email = `${username}@mailinator.com`
|
||||||
|
cy.request({
|
||||||
|
url: 'https://conduit.productionready.io/api/users',
|
||||||
|
method: 'POST',
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
username: username,
|
||||||
|
email: email,
|
||||||
|
password: 'Testtest1'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
expect(response.status).to.eq(200)
|
||||||
|
Cypress.env('email', email)
|
||||||
|
return email
|
||||||
|
})
|
||||||
|
})
|
Loading…
Reference in New Issue