You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by al...@apache.org on 2020/12/23 22:11:06 UTC

[openwhisk-wskdebug] 11/11: pull image before test runs - should fix flaky agentmgr.test.js tests in Travis #84

This is an automated email from the ASF dual-hosted git repository.

alexkli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git

commit 2eb7c610cc3881e3155e0a5c2b77d7a70fd0bc09
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Wed Dec 23 13:47:39 2020 -0800

    pull image before test runs - should fix flaky agentmgr.test.js tests in Travis #84
---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index e2872f5..4260447 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,7 @@
         "wskdebug": "./wskdebug.js"
     },
     "scripts": {
-        "pretest": "npm install --no-save ngrok",
+        "pretest": "npm install --no-save ngrok && docker pull adobeapiplatform/adobe-action-nodejs-v10:3.0.21",
         "test": "WSKDEBUG_QUIET=${WSKDEBUG_QUIET:-1} nyc mocha test/**/*.test.js",
         "test-verbose": "WSKDEBUG_QUIET=0 DEBUG=wskdebug npm run test -- -v",
         "posttest": "test/install/test-npm-install.sh && eslint .",