mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
fix: Fix flaky connection checker test. (#8754)
This commit is contained in:
@@ -503,8 +503,9 @@ suite('Connection checker', function () {
|
|||||||
</xml>`),
|
</xml>`),
|
||||||
this.workspace,
|
this.workspace,
|
||||||
);
|
);
|
||||||
[this.blockA, this.blockB, this.blockC] =
|
this.blockA = this.workspace.getBlockById('A');
|
||||||
this.workspace.getAllBlocks(true);
|
this.blockB = this.workspace.getBlockById('B');
|
||||||
|
this.blockC = this.workspace.getBlockById('C');
|
||||||
this.checker = this.workspace.connectionChecker;
|
this.checker = this.workspace.connectionChecker;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user