1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Update snaps-related copy (#20601)

* Update snaps-related copy

* Update test
This commit is contained in:
Maarten Zuidhoorn 2023-08-25 12:40:13 +02:00 committed by GitHub
parent 6576a28edf
commit f8a7a83e05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -1559,7 +1559,7 @@
"message": "Explore MetaMask Snaps" "message": "Explore MetaMask Snaps"
}, },
"extendWalletWithSnaps": { "extendWalletWithSnaps": {
"message": "Extend the wallet experience." "message": "Customize your wallet experience."
}, },
"externalExtension": { "externalExtension": {
"message": "External extension" "message": "External extension"
@ -2864,7 +2864,7 @@
"message": "👓 We are making transactions easier to read." "message": "👓 We are making transactions easier to read."
}, },
"notificationsEmptyText": { "notificationsEmptyText": {
"message": "Nothing to see here." "message": "This is where you can find notifications from your installed snaps."
}, },
"notificationsHeader": { "notificationsHeader": {
"message": "Notifications" "message": "Notifications"

View File

@ -66,7 +66,11 @@ describe('Notifications', () => {
const { getByText, getByRole } = render(mockStore); const { getByText, getByRole } = render(mockStore);
expect(getByText('Nothing to see here.')).toBeDefined(); expect(
getByText(
'This is where you can find notifications from your installed snaps.',
),
).toBeDefined();
expect(getByRole('button', { name: 'Mark all as read' })).toBeDisabled(); expect(getByRole('button', { name: 'Mark all as read' })).toBeDisabled();
}); });
}); });