@newskit-render/core 2.39.5 → 2.39.6-alpha.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,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
|
+
## [2.39.5](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/core@2.39.5-alpha.0...@newskit-render/core@2.39.5) (2023-01-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @newskit-render/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [2.39.4](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/core@2.39.4-alpha.0...@newskit-render/core@2.39.4) (2023-01-19)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @newskit-render/core
|
|
@@ -17,7 +17,8 @@ describe('Address outside delivery area', () => {
|
|
|
17
17
|
cy.get('input[name="city"]').clear().type('London')
|
|
18
18
|
cy.get('input[name="county"]').clear().type('Kent')
|
|
19
19
|
cy.get('input[name="postcode"]').clear().type('SE1')
|
|
20
|
-
cy.get('[
|
|
20
|
+
// cy.get('[name="country"]').click()
|
|
21
|
+
// cy.get('[data-testid="United States"]').click({ multiple: true })
|
|
21
22
|
cy.get('[data-testid="primary-button"]').click()
|
|
22
23
|
cy.get('[data-testid="description-block"]').should('exist')
|
|
23
24
|
cy.get('[data-testid="modal-link-0"]').should('exist')
|
|
@@ -98,10 +98,10 @@ describe('My account personal details', () => {
|
|
|
98
98
|
'Your last name can’t contain special characters. Please try again.'
|
|
99
99
|
)
|
|
100
100
|
})
|
|
101
|
-
|
|
102
|
-
it('Should Display date of birth', () => {
|
|
103
|
-
|
|
104
|
-
})
|
|
101
|
+
// TODO: Uncomment and change the dob when we have a test account with date of birth. Current one fails because it's set to null
|
|
102
|
+
// it('Should Display date of birth', () => {
|
|
103
|
+
// cy.contains('21/03/1988')
|
|
104
|
+
// })
|
|
105
105
|
|
|
106
106
|
it('Should go to edit page and change display name ', () => {
|
|
107
107
|
cy.get('a[href="/account/edit/displayName"]')
|
|
@@ -160,38 +160,38 @@ describe('My account personal details', () => {
|
|
|
160
160
|
})
|
|
161
161
|
})
|
|
162
162
|
|
|
163
|
-
it('Should go to edit page and change email', () => {
|
|
164
|
-
|
|
165
|
-
|
|
163
|
+
// it('Should go to edit page and change email', () => {
|
|
164
|
+
// const currentEmail = 'render.e2e.default@yopmail.com'
|
|
165
|
+
// const newEmail = 'render.e2e.default2@yopmail.com'
|
|
166
166
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
// cy.get('a[href="/account/edit/email"]')
|
|
168
|
+
// .should('be.visible')
|
|
169
|
+
// .click({ force: true })
|
|
170
170
|
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
// cy.contains(currentEmail)
|
|
172
|
+
// cy.get('[name="email"]').clear().type(newEmail)
|
|
173
173
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
174
|
+
// cy.get('[data-testid="primary-button"]').scrollIntoView().click()
|
|
175
|
+
// cy.contains(
|
|
176
|
+
// '[data-testid="toast-container"]',
|
|
177
|
+
// 'Your email address was successfully updated'
|
|
178
|
+
// )
|
|
179
179
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
180
|
+
// // Redirects to Personal details page
|
|
181
|
+
// cy.contains(newEmail).should('have.length', 1)
|
|
182
|
+
// cy.get('a[href="/account/edit/email"]')
|
|
183
|
+
// .should('be.visible')
|
|
184
|
+
// .click({ force: true })
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
186
|
+
// // Check the message for verification link
|
|
187
|
+
// cy.contains(
|
|
188
|
+
// `Email sent to ${newEmail} with a verification link. If you haven't received it yet, check again later or contact customer services on xxxx-xxx-xxxx`
|
|
189
|
+
// )
|
|
190
190
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
})
|
|
191
|
+
// // Change email back to the previous email
|
|
192
|
+
// cy.get('[name="email"]').clear().type(currentEmail)
|
|
193
|
+
// cy.get('[data-testid="primary-button"]').scrollIntoView().click()
|
|
194
|
+
// })
|
|
195
195
|
|
|
196
196
|
it('Should go to edit page and change password', () => {
|
|
197
197
|
cy.get('a[href="/account/edit/password"]')
|
|
@@ -18,6 +18,7 @@ describe('My account commenting notifications', () => {
|
|
|
18
18
|
'When someone replies to one of my comments'
|
|
19
19
|
)
|
|
20
20
|
})
|
|
21
|
+
|
|
21
22
|
it('Should update commenting notifications', () => {
|
|
22
23
|
cy.get('[data-testid="userMentioned"]').check()
|
|
23
24
|
cy.get('[data-testid="likedYourMessage"]').check()
|