mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
chore: update procedure map tests to match the refactored API (#6562)
* fix: feedback on procedure model implementations * chore: format * chore: add tests for the backing variable of parameter models * chore: update existing procedure map tests * chore: update block update tests to use refactored API * chore: update tests to actually use fluent API * chore: format * chore: fix tests * chore: reorganize tests * chore: format * chore: add comment
This commit is contained in:
@@ -25,6 +25,9 @@ import * as eventUtils from './events/utils.js';
|
||||
import {Field, UnattachedFieldError} from './field.js';
|
||||
import {Msg} from './msg.js';
|
||||
import {Names} from './names.js';
|
||||
import {ObservableProcedureMap} from './procedures/observable_procedure_map.js';
|
||||
import {ObservableProcedureModel} from './procedures/observable_procedure_model.js';
|
||||
import {ObservableParameterModel} from './procedures/observable_parameter_model.js';
|
||||
import * as utilsXml from './utils/xml.js';
|
||||
import * as Variables from './variables.js';
|
||||
import type {Workspace} from './workspace.js';
|
||||
@@ -450,3 +453,9 @@ export function getDefinition(name: string, workspace: Workspace): Block|null {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
export {
|
||||
ObservableProcedureMap,
|
||||
ObservableProcedureModel,
|
||||
ObservableParameterModel,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user