forked from linode/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [M3-7508] - Follow up on tests to check Parent and Child 'Close …
…Account' flows (linode#10316) * M3-7508 Fixed previous PR comments * Added changeset: Add tests to check Parent and Child Close Account flows * Added original PR link * Fix constants
- Loading branch information
1 parent
faa220b
commit 5ae37fa
Showing
3 changed files
with
34 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/manager": Tests | ||
--- | ||
|
||
Add tests to check Parent and Child Close Account flows ([#10316](https://github.com/linode/manager/pull/10316), [#10296](https://github.com/linode/manager/pull/10296)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Data loss warning which is displayed in the account cancellation dialog. | ||
*/ | ||
export const cancellationDataLossWarning = | ||
'Please note this is an extremely destructive action. Closing your account \ | ||
means that all services Linodes, Volumes, DNS Records, etc will be lost and \ | ||
may not be able be restored.'; | ||
|
||
/** | ||
* Error message that appears when a payment failure occurs upon cancellation attempt. | ||
*/ | ||
export const cancellationPaymentErrorMessage = | ||
'We were unable to charge your credit card for services rendered. \ | ||
We cannot cancel this account until the balance has been paid.'; |