From 1b9af5413cff2284619210c3d73e59a2851ae190 Mon Sep 17 00:00:00 2001 From: Monica Kozbial Date: Fri, 21 Aug 2020 11:06:21 -0700 Subject: [PATCH] Add missing field to block definition in test. (#4209) --- tests/mocha/navigation_test.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/mocha/navigation_test.js b/tests/mocha/navigation_test.js index 7d6fccd0f..6a74f39d9 100644 --- a/tests/mocha/navigation_test.js +++ b/tests/mocha/navigation_test.js @@ -518,7 +518,14 @@ suite('Navigation', function() { setup(function() { Blockly.defineBlocksWithJsonArray([{ "type": "basic_block", - "message0": "", + "message0": "%1", + "args0": [ + { + "type": "field_input", + "name": "TEXT", + "text": "default" + } + ], "previousStatement": null, "nextStatement": null, }]);