fix: make deserialization use the new render management system (#7306)

* fix: make JSON use render queue

* fix: updating disabled for JSON system

* fix: make XML use render queue

* chore: make flyout use render queue explicitly
This commit is contained in:
Beka Westberg
2023-07-26 14:01:19 -07:00
committed by GitHub
parent 96c913ded8
commit 435e854b8e
7 changed files with 48 additions and 13 deletions

View File

@@ -27,7 +27,7 @@ import {
suite('Flyout', function () {
setup(function () {
sharedTestSetup.call(this);
this.clock = sharedTestSetup.call(this, {fireEventsNow: false}).clock;
Blockly.defineBlocksWithJsonArray([
{
'type': 'basic_block',
@@ -48,6 +48,7 @@ suite('Flyout', function () {
});
teardown(function () {
this.clock.runAll();
sharedTestTeardown.call(this);
});