mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
* feat: Added a comment_drag event. * Add workspace comment resize events. * Addressing PR feedback. * Fixed chai imports in new test files. * Addressing more PR feedback.
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2024 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {assert} from '../../node_modules/chai/chai.js';
|
|
import {
|
|
sharedTestSetup,
|
|
sharedTestTeardown,
|
|
} from './test_helpers/setup_teardown.js';
|
|
|
|
suite('Comment Resize Event', function () {
|
|
setup(function () {
|
|
sharedTestSetup.call(this);
|
|
this.workspace = new Blockly.Workspace();
|
|
});
|
|
|
|
teardown(function () {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
|
|
suite('Serialization', function () {
|
|
test('events round-trip through JSON', function () {
|
|
const comment = new Blockly.comments.WorkspaceComment(this.workspace);
|
|
comment.setText('test text');
|
|
comment.setSize(new Blockly.utils.Size(100, 100));
|
|
const origEvent = new Blockly.Events.CommentResize(comment);
|
|
comment.setSize(new Blockly.utils.Size(200, 200));
|
|
origEvent.recordCurrentSizeAsNewSize();
|
|
|
|
const json = origEvent.toJson();
|
|
const newEvent = new Blockly.Events.fromJson(json, this.workspace);
|
|
|
|
assert.deepEqual(newEvent, origEvent);
|
|
});
|
|
});
|
|
});
|