-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: [M3-8133] - Add Cypress test for Login History page #10575
Conversation
Coverage Report: ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test passed locally & remotely ✅
Can we add a changeset under the Tests
category?
// cy.findByText(mockSuccessfulLogin.status, { exact: false }).should( | ||
// 'be.visible' | ||
// ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this (and L196-198) commented out pending something that's forthcoming or can it be removed now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work @cliu-akamai! Approved pending both the points Dajahi mentioned:
- Changeset addition
- Stray comments that could possibly be cleaned up
|
||
/** | ||
* Helper text that appears above the login history table. | ||
*/ | ||
export const loginHelperText = | ||
'Logins across all users on your account over the last 90 days.'; | ||
|
||
/** | ||
* Empty state message that appears when there is no item in the login history table. | ||
*/ | ||
export const loginEmptyStateMessageText = 'No account logins'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for these!
@cliu-akamai You'll probably have to pull in the latest changes from |
Description 📝
Add integration test for Login History page.
Major Changes 🔄
How to test 🧪