Closed
Conversation
Contributor
|
Great. Looks like a solid first step. 🎉 Unfortunately, Running individual tests e.g. @mikolalysenko Luckily, the problem is reproducible from within the test dashboard, by pasting the following in the console: var list = [
'gl2d_10',
'gl2d_12',
'gl2d_14',
'gl2d_17',
'gl2d_22',
'gl2d_24',
'gl2d_28',
'gl2d_30',
'gl2d_32',
];
list.forEach(function(mock) {
Tabs.getMock(mock, function(err, fig) {
var gd = Tabs.fresh(mock); // appends new graph div with id set to mock name
Plotly.plot(gd, fig.data, fig.layout).then(function() {
Plotly.downloadImage(gd).then(function() {
Plotly.purge(gd); // this destroys the scene2d instances too!
gd.parentNode.removeChild(gd);
});
});
});
});You can also use Adding @monfera and @bpostlethwaite to the conversation who may have some insights on the problem. |
Contributor
|
closed in favor of #735 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Solves https://github.com/plotly/streambed/issues/6307