From c3df2f941dccf5e135ac48408fccc25cf3c5da30 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 12 Nov 2019 12:30:05 +0000 Subject: [PATCH] attach promise utils atop bluebird --- src/utils/promise.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/promise.js b/src/utils/promise.js index dd10f7fdd7..f7a2e7c3e7 100644 --- a/src/utils/promise.js +++ b/src/utils/promise.js @@ -14,6 +14,9 @@ See the License for the specific language governing permissions and limitations under the License. */ +// This is only here to allow access to methods like done for the time being +import Promise from "bluebird"; + // @flow // Returns a promise which resolves with a given value after the given number of ms