-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 1.61 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
{
"name": "cypress-example",
"version": "1.0.0",
"description": "cypress example",
"main": "index.js",
"scripts": {
"lint": "npx standard",
"lint:fix": "npx standard --fix",
"test": "cypress run",
"test:exemploBasico": "cypress run --config baseUrl=https://ticket-box.s3.eu-central-1.amazonaws.com/index.html --spec cypress/integration/exemploBasico/tickets.spec.js",
"test:exemploAvancadoHackerStories": "cypress run --reporter nyan --config baseUrl=https://wlsf82-hacker-stories.web.app --spec cypress/integration/exemploAvancado/hackerStories.spec.js",
"test:exemploAvancadoHackerNewsSearch": "cypress run --config baseUrl=https://infinite-savannah-93746.herokuapp.com/ --spec cypress/integration/exemploAvancado/hackerNewsSearch.spec.js",
"test:exemploTesteRegressaoVisualPercy": " percy exec -- cypress run --config baseUrl=https://ticket-box.s3.eu-central-1.amazonaws.com/index.html --spec cypress/integration/exemploTesteRegressaoVisualPercy/ticketBox.spec.js",
"test:exemploTesteRegressaoVisualPlugin": "cypress run --config baseUrl=https://ticket-box.s3.eu-central-1.amazonaws.com/index.html --spec cypress/integration/exemploTesteRegressaoVisualPlugin/ticketBox_Plugin.spec.js"
},
"keywords": [
"cypress",
"test",
"automation",
"e2e",
"percy",
"visual"
],
"author": "Jalussa dos Santos",
"license": "MIT",
"devDependencies": {
"@percy/cli": "^1.0.0-beta.52",
"@percy/cypress": "^3.1.0",
"cypress": "^7.7.0",
"cypress-localstorage-commands": "^1.4.5",
"cypress-plugin-snapshots": "^1.4.4",
"faker": "^5.5.3",
"standard": "^16.0.3"
}
}