-
-
Notifications
You must be signed in to change notification settings - Fork 1.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
Label flaky tests and add early returns in setTimeout functions to bypass undefined fullLayouts #5482
Conversation
src/plots/cartesian/index.js
Outdated
@@ -126,6 +126,7 @@ exports.finalizeSubplots = function(layoutIn, layoutOut) { | |||
*/ | |||
exports.plot = function(gd, traces, transitionOpts, makeOnCompleteCallback) { | |||
var fullLayout = gd._fullLayout; | |||
if(!fullLayout._subplots) return; |
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.
What's this about? When do we encounter this?
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.
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.
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.
Very nice! 💃
The goal of this PR is improving the success rate of
test-jasmine
container mainly by taggingflaky
test so that they runtest-jasmine3
container and reduce overall failures.@plotly/plotly_js