-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 969 Bytes
/
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
{
"name": "testes-e2e-com-cypress",
"version": "1.0.0",
"description": "Sample project to demonstrate e2e tests written with Cypress running on GitHub Actions",
"main": "index.js",
"scripts": {
"cy:open": "cypress open",
"cy:open:tablet": "cypress open --config viewportWidth=767,viewportHeight=480",
"test": "cypress run --record --tag 'desktop'",
"test:tablet": "cypress run --record --tag 'tablet' --config viewportWidth=767,viewportHeight=480 --spec cypress/integration/authenticatedScenarios.spec.js --env grepTags=@desktop-and-tablet",
"lint": "eslint cypress/**/*.js",
"lint:fix": "eslint cypress/**/*.js --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"cypress": "^8.2.0",
"cypress-file-upload": "^5.0.8",
"cypress-grep": "^2.5.3",
"cypress-iframe": "^1.0.1",
"cypress-mailosaur": "^2.3.3",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.11.3",
"faker": "^5.5.3"
}
}