-
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-6608] - Add Linode power off, power on and reboot tests #9980
Conversation
Coverage Report: ✅ |
@@ -0,0 +1,5 @@ | |||
--- | |||
"@linode/manager": Added |
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.
I had a similar PR where I only added new tests and was unsure of which identifier to use for the changeset. In my case I ended up going with Tests
. My decision was based on the descriptions found under the Commit Types in the Pull Request Template:
test
: New tests or changes to existing tests. Does not change the production code.
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.
+1 to using tests for the changeset category
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.
confirmed all specs passed - thanks Cassie!
@@ -0,0 +1,5 @@ | |||
--- | |||
"@linode/manager": Added |
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.
+1 to using tests for the changeset category
.should('be.visible') | ||
.within(() => { | ||
containsVisible('Shutting Down'); | ||
cy.contains('Offline', { timeout: 300000 }).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 5 minutes too long? Not sure what our standards are.
Description 📝
Add regression tests for powering on/off and rebooting Linodes
Major Changes 🔄
How to test 🧪