@times-components/ssr 2.49.10 → 2.49.11

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.49.11](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.49.10...@times-components/ssr@2.49.11) (2023-11-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **TMRX-1613:** fix content flickers on page load ([#3658](https://github.com/newsuk/times-components/issues/3658)) ([108eb2c](https://github.com/newsuk/times-components/commit/108eb2c03ffb3cbc481653bb1298cd71f0dbb6f8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.49.10](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.49.9...@times-components/ssr@2.49.10) (2023-11-23)
7
18
 
8
19
  **Note:** Version bump only for package @times-components/ssr
@@ -30,8 +30,8 @@ export default (options = {}) => {
30
30
  });
31
31
 
32
32
  it("should take you to the article page once an article has been selected", () => {
33
+ cy.wait(2000);
33
34
  cy.get(`div[data-testid="article-list-item-0"]`).click();
34
-
35
35
  expect(cy.get('[data-testid="standfirst"]')).to.exist;
36
36
  });
37
37
 
@@ -33,8 +33,8 @@ export default (options = {}) => {
33
33
  });
34
34
 
35
35
  it("should take you to the article page once an article has been selected", () => {
36
+ cy.wait(2000);
36
37
  cy.get(`div[data-testid="article-list-item-0"]`).click();
37
-
38
38
  expect(cy.get('[data-testid="standfirst"]')).to.exist;
39
39
  });
40
40