-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.18 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
{
"name": "testes-e2e-com-cypress",
"version": "1.0.0",
"description": "Sample project to demonstrate e2e tests written with Cypress running on GitHub Actions",
"main": "cypress.config.js",
"scripts": {
"lint": "eslint cypress/**/*.js && eslint cypress.config.js",
"lint:fix": "eslint cypress/**/*.js --fix && eslint cypress.config.js --fix",
"cy:open": "cypress open",
"cy:open:tablet": "cypress open --config viewportWidth=767,viewportHeight=480",
"test": "cypress run",
"test:tablet": "cypress run --config viewportWidth=767,viewportHeight=480 --spec cypress/e2e/authenticated.cy.js",
"test:cloud": "cypress run --record --tag 'desktop'",
"test:tablet:cloud": "cypress run --record --tag 'tablet' --config viewportWidth=767,viewportHeight=480 --spec cypress/e2e/authenticated.cy.js --env grepTags=@desktop-and-tablet,grepOmitFiltered=true"
},
"keywords": [],
"author": "Leonardo Costa",
"license": "MIT",
"devDependencies": {
"@cypress/grep": "^3.1.5",
"@faker-js/faker": "^8.0.2",
"cypress": "12.15.0",
"cypress-iframe": "^1.0.1",
"cypress-mailosaur": "^2.13.0",
"eslint": "^8.43.0",
"eslint-plugin-cypress": "^2.13.3"
}
}