-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
chore: remove flaky test #30395
chore: remove flaky test #30395
Conversation
60dbd6f
to
474ee79
Compare
329dbce
to
8cbc62f
Compare
8cbc62f
to
adf2d9c
Compare
adf2d9c
to
28e6f8f
Compare
c9d0311
to
05cc216
Compare
05cc216
to
0eda181
Compare
@@ -312,15 +312,15 @@ describe('Native filters', () => { | |||
}); | |||
|
|||
describe('Nativefilters initial state not required', () => { |
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.
instead of skipping each test, i believe if you did a describe.skip()
you'll skip all tests in the describe block
@@ -81,7 +81,7 @@ describe('Horizontal FilterBar', () => { | |||
setFilterBarOrientation('vertical'); | |||
}); | |||
|
|||
it('should show all default actions in horizontal mode', () => { | |||
it.skip('should show all default actions in horizontal mode', () => { |
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.
instead of doing all the skips here and below, you can just do it.only
and it'll only run that test above. You can probably put a note after that test to list out why you're skipping all these other tests
); | ||
}); | ||
}); | ||
// describe('No Results', () => { |
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.
you can do a describe.skip here to skip all these tests
one thing, if we're skipping tests, we should probably add a comment in the file to see why we are skipping all these tests. |
a86c0f1
to
0affb6f
Compare
faf3ab4
to
0eda181
Compare
-v "$GITHUB_WORKSPACE/superset-frontend/cypress-base:/e2e" \ | ||
-w /e2e \ | ||
cypress/browsers:node-20.16.0-chrome-127.0.6533.119-1 \ | ||
npx cypress run --browser chrome $USE_DASHBOARD_FLAG |
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 think that mean means no parallelism, guessing you're not meaning to merge this change
SUMMARY
Continuing to debug the flaky cypress issues.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION