@newskit-render/core 2.44.0-alpha.2 → 2.44.0-alpha.4
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.
|
@@ -8,9 +8,6 @@ describe('Book a Holiday Stop', () => {
|
|
|
8
8
|
cy.get('a[href="/account/subscription-and-billing"]').should('be.visible')
|
|
9
9
|
cy.contains('[data-testid="introduction-title"]', 'Book a Holiday Stop')
|
|
10
10
|
cy.contains('Add a Holiday Stop')
|
|
11
|
-
cy.get('a[href="/account/holiday-stop/upcoming-holiday-stops"]').should(
|
|
12
|
-
'exist'
|
|
13
|
-
)
|
|
14
11
|
})
|
|
15
12
|
})
|
|
16
13
|
|
|
@@ -25,7 +22,8 @@ describe('Upcoming Holiday Stops', () => {
|
|
|
25
22
|
clock.restore()
|
|
26
23
|
})
|
|
27
24
|
})
|
|
28
|
-
|
|
25
|
+
|
|
26
|
+
it('should display Upcoming Holiday Stops when there are more than 5 holiday stops', () => {
|
|
29
27
|
cy.get('a[href="/account/holiday-stop/upcoming-holiday-stops"]').should(
|
|
30
28
|
'exist'
|
|
31
29
|
)
|
|
@@ -34,6 +32,11 @@ describe('Upcoming Holiday Stops', () => {
|
|
|
34
32
|
6
|
|
35
33
|
)
|
|
36
34
|
})
|
|
35
|
+
|
|
36
|
+
it('should navigate to the Upcoming Holiday Stops and display the list of upcoming Holiday Stops', () => {
|
|
37
|
+
cy.get('a[href="/account/holiday-stop/upcoming-holiday-stops"]').click()
|
|
38
|
+
cy.url().should('match', /account\/holiday-stop\/upcoming-holiday-stops/)
|
|
39
|
+
})
|
|
37
40
|
})
|
|
38
41
|
|
|
39
42
|
describe('Cancel Holiday Stop', () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newskit-render/core",
|
|
3
|
-
"version": "2.44.0-alpha.
|
|
3
|
+
"version": "2.44.0-alpha.4",
|
|
4
4
|
"description": "Newskit Render - Core package",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@newskit-render/checkout": "^2.5.0-alpha.1",
|
|
45
45
|
"@newskit-render/feature-flags": "^1.4.10",
|
|
46
46
|
"@newskit-render/feed": "^1.4.15-alpha.0",
|
|
47
|
-
"@newskit-render/my-account": "^4.4.0-alpha.
|
|
47
|
+
"@newskit-render/my-account": "^4.4.0-alpha.3",
|
|
48
48
|
"@newskit-render/shared-components": "^2.4.1-alpha.0",
|
|
49
49
|
"@newskit-render/standalone-components": "^2.5.1-alpha.0",
|
|
50
50
|
"@newskit-render/validation": "^1.5.11",
|