@newskit-render/core 1.89.0 → 1.89.1
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,14 @@
|
|
|
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
|
+
# [1.89.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/core@1.89.0-alpha.0...@newskit-render/core@1.89.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @newskit-render/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.88.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/core@1.88.0-alpha.0...@newskit-render/core@1.88.0) (2022-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @newskit-render/core
|
|
@@ -44,7 +44,14 @@ describe('Page accessibility', () => {
|
|
|
44
44
|
it(`Should pass a11y tests: ${name}`, () => {
|
|
45
45
|
cy.mockConsentAndVisit(url)
|
|
46
46
|
cy.injectAxe()
|
|
47
|
-
cy.checkA11y(
|
|
47
|
+
cy.checkA11y(
|
|
48
|
+
{
|
|
49
|
+
exclude: ['meta[name="viewport"]'],
|
|
50
|
+
},
|
|
51
|
+
null,
|
|
52
|
+
terminalLog,
|
|
53
|
+
skip
|
|
54
|
+
)
|
|
48
55
|
})
|
|
49
56
|
})
|
|
50
57
|
})
|
|
@@ -11,11 +11,25 @@ describe('Page accessibility', () => {
|
|
|
11
11
|
it(`Should pass a11y tests: ${name}`, () => {
|
|
12
12
|
cy.mockConsentAndVisit(url)
|
|
13
13
|
cy.injectAxe()
|
|
14
|
-
cy.checkA11y(
|
|
14
|
+
cy.checkA11y(
|
|
15
|
+
{
|
|
16
|
+
exclude: ['meta[name="viewport"]'],
|
|
17
|
+
},
|
|
18
|
+
null,
|
|
19
|
+
terminalLog,
|
|
20
|
+
skip
|
|
21
|
+
)
|
|
15
22
|
|
|
16
23
|
cy.get('[data-testid="autocomplete-input"]').type('Google')
|
|
17
24
|
|
|
18
|
-
cy.checkA11y(
|
|
25
|
+
cy.checkA11y(
|
|
26
|
+
{
|
|
27
|
+
exclude: ['meta[name="viewport"]'],
|
|
28
|
+
},
|
|
29
|
+
null,
|
|
30
|
+
terminalLog,
|
|
31
|
+
false
|
|
32
|
+
)
|
|
19
33
|
})
|
|
20
34
|
})
|
|
21
35
|
})
|
package/package.json
CHANGED
package/pages/_app.tsx
CHANGED
|
@@ -51,9 +51,9 @@ function MyApp({ Component, pageProps, featureFlags, tenant }: MyAppProps) {
|
|
|
51
51
|
<meta name="robots" content="max-video-preview:0" />
|
|
52
52
|
<meta google-site-verification="google-site-verification=9IZcsqYKeNo_Wlkwq6WBqgpqZuiwPGJw90Ug_LAENt4" />
|
|
53
53
|
<meta
|
|
54
|
-
name="viewport"
|
|
55
|
-
content="initial-scale=1.0, width=device-width"
|
|
56
54
|
key="viewport"
|
|
55
|
+
name="viewport"
|
|
56
|
+
content="width=device-width, initial-scale=1, maximum-scale=1"
|
|
57
57
|
/>
|
|
58
58
|
</Head>
|
|
59
59
|
<InstrumentationContextProvider>
|