CB-13740 return expected promise resolving with array
diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js
index 172aa38..c615e14 100644
--- a/bin/lib/check_reqs.js
+++ b/bin/lib/check_reqs.js
@@ -22,5 +22,6 @@
 // add methods as we determine what are the requirements
 
 module.exports.run = function () {
-    return Promise.resolve();
+    // caller expects a promise resolved with an array of conditions
+    return Promise.resolve([]);
 };