@times-components/ssr 2.58.5-alpha.11 → 2.58.5-alpha.12
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 +28 -0
- package/__tests__/{integration/article-indepth.js → cypress/e2e/article-indepth.cy.js} +1 -1
- package/__tests__/{integration/article-magazinecomment.js → cypress/e2e/article-magazinecomment.cy.js} +1 -1
- package/__tests__/{integration/article-magazinestandard.js → cypress/e2e/article-magazinestandard.cy.js} +1 -1
- package/__tests__/{integration/article-maincomment.js → cypress/e2e/article-maincomment.cy.js} +1 -1
- package/__tests__/{integration/article-mainstandard-default.js → cypress/e2e/article-mainstandard-default.cy.js} +1 -1
- package/__tests__/{integration/article-mainstandard-persisted-query.js → cypress/e2e/article-mainstandard-persisted-query.cy.js} +1 -1
- package/__tests__/{integration/author-profile-default.js → cypress/e2e/author-profile-default.cy.js} +1 -2
- package/__tests__/{integration/author-profile-persisted-query.js → cypress/e2e/author-profile-persisted-query.cy.js} +1 -1
- package/__tests__/cypress/support/commands.js +3 -1
- package/__tests__/helpers/article-helper.js +1 -1
- package/__tests__/helpers/author-profile-helper.js +1 -1
- package/cypress.config.js +19 -0
- package/dist/article.react.bundle.js +4 -4
- package/dist/article.react.bundle.js.map +1 -1
- package/dist/author-profile.react.bundle.js +1 -1
- package/dist/author-profile.react.bundle.js.map +1 -1
- package/dist/common.react.bundle.js +23 -23
- package/dist/common.react.bundle.js.map +1 -1
- package/package.json +5 -5
- package/cypress.json +0 -10
- /package/__tests__/cypress/support/{index.js → e2e.js} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@times-components/ssr",
|
|
3
3
|
"main": "src",
|
|
4
|
-
"version": "2.58.5-alpha.
|
|
4
|
+
"version": "2.58.5-alpha.12+57f7aaeb96",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"bundle:dev": "yarn cleanup-dist && webpack --config=webpack.config.js",
|
|
7
7
|
"bundle:prod": "yarn cleanup-dist && NODE_ENV=production webpack --config=webpack.config.js -p",
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"@times-components/fixture-generator": "^0.35.1",
|
|
40
40
|
"@times-components/mock-tpa-server": "^0.4.10",
|
|
41
41
|
"axe-core": "3.3.1",
|
|
42
|
-
"cypress": "^9.2.0",
|
|
43
42
|
"cypress-axe": "0.13.0",
|
|
44
43
|
"cypress-failed-log": "2.5.1",
|
|
45
44
|
"cypress-image-snapshot": "^4.0.0",
|
|
@@ -53,8 +52,8 @@
|
|
|
53
52
|
"webpack": "4.30.0"
|
|
54
53
|
},
|
|
55
54
|
"dependencies": {
|
|
56
|
-
"@times-components/article": "^7.17.6-alpha.
|
|
57
|
-
"@times-components/author-profile": "^6.18.20-alpha.
|
|
55
|
+
"@times-components/article": "^7.17.6-alpha.12+57f7aaeb96",
|
|
56
|
+
"@times-components/author-profile": "^6.18.20-alpha.12+57f7aaeb96",
|
|
58
57
|
"@times-components/context": "^1.24.0",
|
|
59
58
|
"@times-components/provider": "^1.41.4",
|
|
60
59
|
"@times-components/schema": "^0.7.5",
|
|
@@ -67,6 +66,7 @@
|
|
|
67
66
|
"apollo-link-error": "1.1.2",
|
|
68
67
|
"apollo-link-http": "1.5.14",
|
|
69
68
|
"apollo-link-persisted-queries": "0.2.2",
|
|
69
|
+
"cypress": "^13.14.0",
|
|
70
70
|
"cypress-wait-until": "1.7.2",
|
|
71
71
|
"node-fetch": "2.6.7",
|
|
72
72
|
"react": "16.9.0",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "57f7aaeb9620450c0566af8955c5cc88367df032"
|
|
83
83
|
}
|
package/cypress.json
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"baseUrl": "http://localhost:3000",
|
|
3
|
-
"fixturesFolder": false,
|
|
4
|
-
"integrationFolder": "__tests__/integration",
|
|
5
|
-
"pluginsFile": "__tests__/cypress/plugins",
|
|
6
|
-
"screenshotsFolder": "__tests__/screenshots",
|
|
7
|
-
"supportFile": "__tests__/cypress/support",
|
|
8
|
-
"video": false,
|
|
9
|
-
"blockHosts": ["*spot.im"]
|
|
10
|
-
}
|
|
File without changes
|