@times-components/ssr 2.55.16 → 2.56.0

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,17 @@
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
+ # [2.56.0](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.55.16...@times-components/ssr@2.56.0) (2024-07-31)
7
+
8
+
9
+ ### Features
10
+
11
+ * **TMP-1445:** Enable a11y debug output on failure ([#3905](https://github.com/newsuk/times-components/issues/3905)) ([9b21eed](https://github.com/newsuk/times-components/commit/9b21eed8e97ff5785a764f39e88b3ce57b0b4967))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.55.16](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.55.15...@times-components/ssr@2.55.16) (2024-07-30)
7
18
 
8
19
  **Note:** Version bump only for package @times-components/ssr
@@ -2,7 +2,8 @@ import { MockArticle, MockUser } from "@times-components/fixture-generator";
2
2
  import {
3
3
  checkDropCapChanges,
4
4
  checkShareBarLoaded,
5
- waitUntilSelectorExists
5
+ waitUntilSelectorExists,
6
+ terminalLog
6
7
  } from "../cypress/support";
7
8
 
8
9
  const relatedArticleCount = 3;
@@ -181,7 +182,7 @@ const articleTemplateTest = (template, options = {}) => {
181
182
  }
182
183
  ]
183
184
  })
184
- .checkA11y();
185
+ .checkA11y(null, null, terminalLog, null);
185
186
  });
186
187
  });
187
188
  };
@@ -1,6 +1,7 @@
1
1
  /* eslint-disable no-unused-expressions */
2
2
 
3
3
  import { MockTopic, MockArticle } from "@times-components/fixture-generator";
4
+ import { terminalLog } from "../cypress/support";
4
5
 
5
6
  export default (options = {}) => {
6
7
  const qs = options.qs || "";
@@ -69,7 +70,7 @@ export default (options = {}) => {
69
70
  }
70
71
  ]
71
72
  });
72
- cy.checkA11y();
73
+ cy.checkA11y(null, null, terminalLog, null);
73
74
  });
74
75
  });
75
76
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@times-components/ssr",
3
3
  "main": "src",
4
- "version": "2.55.16",
4
+ "version": "2.56.0",
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",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "92ade481cf28e77695de0f9a600c4e7c49a87eca"
82
+ "gitHead": "c0f1838c1a751fec26f6a9b82136815923d04721"
83
83
  }