@nrwl/cypress 14.7.12 → 14.7.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [14.7.
|
|
6
|
+
## [14.7.13](https://github.com/nrwl/nx/compare/14.7.12...14.7.13) (2022-09-23)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @nrwl/cypress
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/cypress",
|
|
3
|
-
"version": "14.7.
|
|
3
|
+
"version": "14.7.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Cypress contains executors and generators allowing your workspace to use the powerful Cypress integration testing capabilities.",
|
|
6
6
|
"repository": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@babel/core": "^7.0.1",
|
|
38
38
|
"@babel/preset-env": "^7.0.0",
|
|
39
39
|
"@cypress/webpack-preprocessor": "^5.12.0",
|
|
40
|
-
"@nrwl/devkit": "14.7.
|
|
41
|
-
"@nrwl/linter": "14.7.
|
|
42
|
-
"@nrwl/workspace": "14.7.
|
|
40
|
+
"@nrwl/devkit": "14.7.13",
|
|
41
|
+
"@nrwl/linter": "14.7.13",
|
|
42
|
+
"@nrwl/workspace": "14.7.13",
|
|
43
43
|
"@phenomnomnominal/tsquery": "4.1.1",
|
|
44
44
|
"babel-loader": "^8.0.2",
|
|
45
45
|
"chalk": "4.1.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "518caaddae6e3392e7648a828a8312fa1d83f9c4"
|
|
66
66
|
}
|
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "Cypress Target",
|
|
3
|
-
"description": "Cypress
|
|
3
|
+
"description": "Run Cypress for e2e, integration and component testing.",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"outputCapture": "pipe",
|
|
6
6
|
"cli": "nx",
|
|
7
|
+
"presets": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Starting Dev Server",
|
|
10
|
+
"keys": ["cypressConfig", "devServerTarget"]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Custom Base Url",
|
|
14
|
+
"keys": ["cypressConfig", "baseUrl"]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "Component Testing",
|
|
18
|
+
"keys": ["cypressConfig", "devServerTarget", "testingType", "skipServe"]
|
|
19
|
+
}
|
|
20
|
+
],
|
|
7
21
|
"properties": {
|
|
8
22
|
"cypressConfig": {
|
|
9
23
|
"type": "string",
|
|
@@ -122,5 +136,6 @@
|
|
|
122
136
|
}
|
|
123
137
|
},
|
|
124
138
|
"additionalProperties": true,
|
|
125
|
-
"required": ["cypressConfig"]
|
|
139
|
+
"required": ["cypressConfig"],
|
|
140
|
+
"examplesFile": "../../../docs/cypress-examples.md"
|
|
126
141
|
}
|