File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed
apps/browser-extension-wallet
packages/e2e-tests/src/assert Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ WEBSITE_URL=https://www.lace.io
45
45
EMAIL_ADDRESS=lace@iohk.io
46
46
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new
47
47
FAQ_URL=https://www.lace.io/faq
48
- PRIVACY_POLICY_URL=https://www.lace.io/lace-privacy-policy.pdf
49
- COOKIE_POLICY_URL=https://www.lace.io/lace -cookie-policy.pdf
50
- TERMS_OF_USE_URL=https://www.lace.io/iohktermsandconditions.pdf
48
+ PRIVACY_POLICY_URL=https://www.lace.io/legal/ lace-privacy-policy
49
+ COOKIE_POLICY_URL=https://www.lace.io/legal/iog -cookie-policy
50
+ TERMS_OF_USE_URL=https://www.lace.io/legal/lace-terms-of-use
51
51
YOUTUBE_RECOVERY_PHRASE_VIDEO_URL=https://www.youtube-nocookie.com/embed/hOFVXo969rk?si=0a-hNDVME6eTboIX
52
52
BANXA_LACE_URL=https://lacewallet.banxa-sandbox.com/
53
53
BANXA_HOMEPAGE_URL=https://banxa.com/
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ WEBSITE_URL=https://www.lace.io
43
43
EMAIL_ADDRESS=lace@iohk.io
44
44
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new
45
45
FAQ_URL=https://www.lace.io/faq
46
- PRIVACY_POLICY_URL=https://www.lace.io/lace-privacy-policy.pdf
47
- COOKIE_POLICY_URL=https://www.lace.io/lace -cookie-policy.pdf
48
- TERMS_OF_USE_URL=https://www.lace.io/iohktermsandconditions.pdf
46
+ PRIVACY_POLICY_URL=https://www.lace.io/legal/ lace-privacy-policy
47
+ COOKIE_POLICY_URL=https://www.lace.io/legal/iog -cookie-policy
48
+ TERMS_OF_USE_URL=https://www.lace.io/legal/lace-terms-of-use
49
49
YOUTUBE_RECOVERY_PHRASE_VIDEO_URL=https://www.youtube-nocookie.com/embed/hOFVXo969rk?si=0a-hNDVME6eTboIX
50
50
BANXA_LACE_URL=https://lacewallet.banxa-sandbox.com/
51
51
BANXA_HOMEPAGE_URL=https://banxa.com/
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ WEBSITE_URL=https://www.lace.io
42
42
EMAIL_ADDRESS = lace@iohk.io
43
43
HELP_URL = https://iohk.zendesk.com/hc/en-us/requests/new
44
44
FAQ_URL = https://www.lace.io/faq
45
- PRIVACY_POLICY_URL = https://www.lace.io/lace-privacy-policy.pdf
46
- COOKIE_POLICY_URL = https://www.lace.io/lace -cookie-policy.pdf
47
- TERMS_OF_USE_URL = https://www.lace.io/iohktermsandconditions.pdf
45
+ PRIVACY_POLICY_URL = https://www.lace.io/legal/ lace-privacy-policy
46
+ COOKIE_POLICY_URL = https://www.lace.io/legal/iog -cookie-policy
47
+ TERMS_OF_USE_URL = https://www.lace.io/legal/lace-terms-of-use
48
48
YOUTUBE_RECOVERY_PHRASE_VIDEO_URL = https://www.youtube-nocookie.com/embed/hOFVXo969rk?si=0a-hNDVME6eTboIX
49
49
BANXA_LACE_URL = https://lacewallet.banxa-sandbox.com/
50
50
BANXA_HOMEPAGE_URL = https://banxa.com/
Original file line number Diff line number Diff line change @@ -72,14 +72,14 @@ class CommonAssert {
72
72
let expectedUrl ;
73
73
switch ( linkName ) {
74
74
case 'Cookie policy' :
75
- expectedUrl = 'https://www.lace.io/lace -cookie-policy.pdf ' ;
75
+ expectedUrl = 'https://www.lace.io/legal/iog -cookie-policy' ;
76
76
break ;
77
77
case 'Privacy policy' :
78
- expectedUrl = 'https://www.lace.io/lace-privacy-policy.pdf ' ;
78
+ expectedUrl = 'https://www.lace.io/legal/ lace-privacy-policy' ;
79
79
break ;
80
80
case 'Terms of service' :
81
81
case 'Terms and conditions' :
82
- expectedUrl = 'https://www.lace.io/iohktermsandconditions.pdf ' ;
82
+ expectedUrl = 'https://www.lace.io/legal/lace-terms-of-use ' ;
83
83
break ;
84
84
default :
85
85
throw new Error ( `Unsupported legal link - ${ linkName } ` ) ;
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ class OnboardingMainPageAssert extends OnboardingCommonAssert {
22
22
async assertSeeTermsOfServiceLink ( ) {
23
23
await OnboardingMainPage . agreementTermsOfServiceLink . waitForDisplayed ( ) ;
24
24
expect ( await OnboardingMainPage . agreementTermsOfServiceLink . getAttribute ( 'href' ) ) . to . equal (
25
- 'https://www.lace.io/iohktermsandconditions.pdf '
25
+ 'https://www.lace.io/legal/lace-terms-of-use '
26
26
) ;
27
27
}
28
28
29
29
async assertSeePrivacyPolicyLink ( ) {
30
30
await OnboardingMainPage . agreementPrivacyPolicyLink . waitForDisplayed ( ) ;
31
31
expect ( await OnboardingMainPage . agreementPrivacyPolicyLink . getAttribute ( 'href' ) ) . to . equal (
32
- 'https://www.lace.io/lace-privacy-policy.pdf '
32
+ 'https://www.lace.io/legal/ lace-privacy-policy'
33
33
) ;
34
34
}
35
35
You can’t perform that action at this time.
0 commit comments