mirror of
https://github.com/google/blockly.git
synced 2026-01-24 09:10:09 +01:00
26 lines
608 B
JavaScript
26 lines
608 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.module('Blockly.test.workspace');
|
|
|
|
const {assertVariableValues, sharedTestSetup, sharedTestTeardown, workspaceTeardown} = goog.require('Blockly.test.helpers');
|
|
const {testAWorkspace} = goog.require('Blockly.test.helpers.workspace');
|
|
|
|
|
|
suite('Workspace', function() {
|
|
setup(function() {
|
|
sharedTestSetup.call(this);
|
|
this.workspace = new Blockly.Workspace();
|
|
});
|
|
|
|
teardown(function() {
|
|
sharedTestTeardown.call(this);
|
|
});
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
testAWorkspace();
|
|
});
|