From ff33d923a2e5a767559d056b5732e8b291b5ad8e Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Mon, 16 Sep 2019 16:13:02 -0700 Subject: [PATCH] Fix compile test. (partially) LGTM in person by Sam. --- tests/compile/main.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/compile/main.js b/tests/compile/main.js index 3a9ee18e7..42e050b3f 100644 --- a/tests/compile/main.js +++ b/tests/compile/main.js @@ -1,6 +1,10 @@ goog.provide('Main'); // Core goog.require('Blockly'); +goog.require('Blockly.FieldDropdown'); +goog.require('Blockly.FieldNumber'); +goog.require('Blockly.FieldTextInput'); +goog.require('Blockly.FieldVariable'); // Blocks goog.require('Blockly.Constants.Logic'); goog.require('Blockly.Constants.Loops');