Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204799c commit 2c529ecCopy full SHA for 2c529ec
tasks/test_syntax.js
@@ -260,12 +260,9 @@ function assertCircularDeps() {
260
var circularDeps = res.circular();
261
var logs = [];
262
263
- // see https://github.com/plotly/plotly.js/milestone/9
264
- var MAX_ALLOWED_CIRCULAR_DEPS = 16;
265
-
266
- if(circularDeps.length > MAX_ALLOWED_CIRCULAR_DEPS) {
+ if(circularDeps.length) {
267
console.log(circularDeps.join('\n'));
268
- logs.push('some new circular dependencies were added to src/');
+ logs.push('some circular dependencies were found to src/');
269
}
270
271
log('circular dependencies: ' + circularDeps.length, logs);
0 commit comments