scratch-vm/test/unit/blocks_procedures.js
Michael "Z" Goddard 2b257dde57
add getProcedureParamNamesIdsAndDefaults
Use getProcedureParamNamesIdsAndDefaults to get the defaults along with
names and ids so defaults may be set for a procedure call if the
parameter is not provided.
2018-10-16 16:31:45 -04:00

28 lines
702 B
JavaScript

const test = require('tap').test;
const Procedures = require('../../src/blocks/scratch3_procedures');
const blocks = new Procedures(null);
test('getPrimitives', t => {
t.type(blocks.getPrimitives(), 'object');
t.end();
});
// Originally inspired by https://github.com/LLK/scratch-gui/issues/809
test('calling a custom block with no definition does not throw', t => {
const args = {
mutation: {
proccode: 'undefined proc'
}
};
const util = {
getProcedureParamNamesIdsAndDefaults: () => null,
stackFrame: {
executed: false
}
};
t.doesNotThrow(() => {
blocks.call(args, util);
});
t.end();
});