-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 2.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "aqa_js",
"version": "1.0.0",
"description": "Repository for create test automation",
"main": "index.js",
"scripts": {
"cy:open": "npx cypress open",
"cy:run": "npx cypress run --reporter cypress-mochawesome-reporter --spec 'cypress/e2e/ui/login.cy.js'",
"cy:run:reg:ui": "npx cypress run --browser chrome --config-file cypress.config.js --spec 'cypress/e2e/ui/registration.cy.js'",
"cy:run:login:ui": "npx cypress run --browser chrome --config-file cypress.config.js --spec 'cypress/e2e/ui/login.cy.js'",
"cy:run:login:api": "npx cypress run --browser chrome --config-file cypress.config.js --spec 'cypress/e2e/api/login.cy.js'",
"cy:run:main-page:local:api": "npx cypress run --browser chrome --config-file cypress.config.js --spec 'cypress/e2e/api/main-page.cy.js' ",
"cy:run:main-page:local:ui": "npx cypress run --browser electron --config-file cypress.config.js --spec 'cypress/e2e/ui/mainPage.cy.js'",
"cy:run:main-page:remote:api": "npx cypress run --browser chrome --config-file cypressRemote.config.js --spec 'cypress/e2e/api/main-page.cy.js'",
"cy:run:main-page:remote:ui": "npx cypress run --browser electron --config-file cypressRemote.config.js --spec 'cypress/e2e/ui/mainPage.cy.js'",
"cy:run:smoke": "npx cypress run --env grepTags='@smoke',grepFilterSpecs=true,allure=true",
"cy:run:regres": "npx cypress run --env grepTags='@regression',grepFilterSpecs=true,allure=true",
"allure:report": "allure generate allure-results --clean -o allure-report && allure open allure-report ",
"allure:clear": "rm -r allure-results/ allure-report cypress/screenshots || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Train-lab-intern/aqa_js.git"
},
"author": "nataliasiutsova",
"license": "ISC",
"bugs": {
"url": "https://github.com/Train-lab-intern/aqa_js/issues"
},
"homepage": "https://github.com/Train-lab-intern/aqa_js#readme",
"devDependencies": {
"@cypress/grep": "^4.0.0",
"@cypress/xvfb": "^1.2.4",
"@faker-js/faker": "^8.0.2",
"@shelex/cypress-allure-plugin": "^2.40.0",
"allure-commandline": "^2.24.0",
"cypress": "^12.4.0",
"cypress-mochawesome-reporter": "^3.2.0",
"cypress-real-events": "^1.10.0",
"dotenv": "^16.3.1",
"pg": "^8.11.1"
}
}