@davidsneighbour/cypress-config 5.9.4 → 5.9.6
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/README.md +19 -21
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
# Cypress
|
|
2
|
-
|
|
3
1
|
Create `tests/cypress/plugins.index.js` with the following content:
|
|
4
2
|
|
|
5
3
|
```js
|
|
@@ -22,25 +20,25 @@ This configuration setup uses the approach of [Gleb Bahmutov's blog post](https:
|
|
|
22
20
|
|
|
23
21
|
## Default settings of this configuration
|
|
24
22
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
23
|
+
* All cypress files reside within the `tests` directory (no need for additional directories in the root directory).
|
|
24
|
+
* The base url is set to <http://localhost:1313> - default for all Hugo dev server instances.
|
|
25
|
+
* IDEs like IntelliJ import the schema to offer typeahead code hints.
|
|
26
|
+
* `watchForFileChanges` is enabled.
|
|
29
27
|
|
|
30
28
|
# All configurations
|
|
31
29
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
30
|
+
* [Babel](/packages/babel-config)
|
|
31
|
+
* [Bootstrap](/packages/bootstrap-config)
|
|
32
|
+
* [Browserslist](/packages/browserslist-config)
|
|
33
|
+
* [Commitlint](/packages/commitlint-config)
|
|
34
|
+
* [CssNano](/packages/cssnano-config)
|
|
35
|
+
* [Cypress](/packages/cypress-config)
|
|
36
|
+
* [ESLint](/packages/eslint-config)
|
|
37
|
+
* [Markdownlint](/packages/markdownlint-config)
|
|
38
|
+
* [PostCSS](/packages/postcss-config)
|
|
39
|
+
* [Prettier](/packages/prettier-config)
|
|
40
|
+
* [Remark Lint](/packages/remark-config)
|
|
41
|
+
* [Standard Version](/packages/standard-version-config)
|
|
42
|
+
* [Stylelint](/packages/stylelint-config)
|
|
43
|
+
* [Tools](/packages/tools)
|
|
44
|
+
* [Webpack](/packages/webpack-config)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidsneighbour/cypress-config",
|
|
3
3
|
"description": "Cypress configuration for use in @davidsneighbour projects.",
|
|
4
|
-
"version": "5.9.
|
|
4
|
+
"version": "5.9.6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "davidsneighbour/configurations",
|
|
7
7
|
"author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"cypress": "13.6.6",
|
|
12
12
|
"cypress-axe": "1.5.0",
|
|
13
|
-
"cypress-html-validate": "6.1.0",
|
|
14
13
|
"eslint-plugin-cypress": "2.15.1"
|
|
15
14
|
},
|
|
16
15
|
"scripts": {
|
|
@@ -22,5 +21,5 @@
|
|
|
22
21
|
"node": ">=20.9.0",
|
|
23
22
|
"npm": ">=10.1.0"
|
|
24
23
|
},
|
|
25
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "e9f4e9e2e73915d8c02f53f0957bab5317780b5d"
|
|
26
25
|
}
|