-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
54 lines (54 loc) · 2.43 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gitlab-cypress",
"version": "1.0.0",
"description": "Sample project to experiment with Cypress for testing the GitLab application",
"scripts": {
"cy:open": "cypress open --config excludeSpecPattern=[cypress/e2e/api/index.cy.js,cypress/e2e/gui/project/projectIssue.cy.js,cypress/e2e/gui/project/projectButIssue.cy.js,cypress/e2e/gui/allButProject.cy.js]",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix",
"test": "cypress run --spec 'cypress/e2e/gui/profile/createAccessToken.cy.js,cypress/e2e/api/**/*.cy.js,cypress/e2e/gui/**/*.cy.js' --config excludeSpecPattern=[cypress/e2e/api/index.cy.js,cypress/e2e/gui/project/projectIssue.cy.js,cypress/e2e/gui/project/projectButIssue.cy.js,cypress/e2e/gui/allButProject.cy.js,cypress/e2e/gui/profile/deleteAccessTokens.cy.js]",
"test:api:cloud": "cypress run --record --tag 'api' --spec 'cypress/e2e/api/index.cy.js'",
"test:gui:project:issue:cloud": "cypress run --record --tag 'gui:project:issue' --spec 'cypress/e2e/gui/project/projectIssue.cy.js'",
"test:gui:project:but:issue:cloud": "cypress run --record --tag 'gui:project:but:issue' --spec 'cypress/e2e/gui/project/projectButIssue.cy.js'",
"test:gui:all:but:project:cloud": "cypress run --record --tag 'gui:all:but:project' --spec 'cypress/e2e/gui/allButProject.cy.js'",
"test:api": "cypress run --spec 'cypress/e2e/api/index.cy.js'",
"test:gui:project:issue": "cypress run --spec 'cypress/e2e/gui/project/projectIssue.cy.js'",
"test:gui:project:but:issue": "cypress run --spec 'cypress/e2e/gui/project/projectButIssue.cy.js'",
"test:gui:all:but:project": "cypress run --spec 'cypress/e2e/gui/allButProject.cy.js'"
},
"standard": {
"globals": [
"before",
"beforeEach",
"cy",
"Cypress",
"describe",
"expect",
"it"
]
},
"keywords": [
"testing",
"automation",
"cypress",
"gitlab",
"web-testing"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/wlsf82/gitlab-cypress"
},
"author": "Walmyr Filho <[email protected]>",
"license": "MIT",
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.3",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@faker-js/faker": "^9.2.0",
"cypress": "^13.15.2",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"snazzy": "^9.0.0",
"standard": "^17.1.2"
}
}