From 13ca03ac434ed25fc466a677d72529afdfee58bc Mon Sep 17 00:00:00 2001 From: pstlouis Date: Tue, 4 Mar 2025 14:13:33 -0500 Subject: [PATCH] add config directory and update dockerfile Signed-off-by: pstlouis --- Dockerfile | 3 ++- abstract.hbs => config/abstract.hbs | 0 respecConfig.json => config/respecConfig.json | 0 package.json | 2 +- 4 files changed, 3 insertions(+), 2 deletions(-) rename abstract.hbs => config/abstract.hbs (100%) rename respecConfig.json => config/respecConfig.json (100%) diff --git a/Dockerfile b/Dockerfile index 0ccc5ec8..eec70562 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM node:18 WORKDIR /test-suite -COPY package.json respecConfig.json abstract.hbs ./ +COPY package.json ./ +COPY config/ ./config COPY tests/ ./tests COPY reports/ ./reports diff --git a/abstract.hbs b/config/abstract.hbs similarity index 100% rename from abstract.hbs rename to config/abstract.hbs diff --git a/respecConfig.json b/config/respecConfig.json similarity index 100% rename from respecConfig.json rename to config/respecConfig.json diff --git a/package.json b/package.json index b7144ac9..b15d404f 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "type": "module", "scripts": { - "test": "mocha tests/ --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options abstract=\"$PWD/abstract.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/respecConfig.json\",suiteLog='./suite.log',templateData=\"$PWD/reports/index.json\",title=\"VC v2.0 Interoperability Report\" --timeout 15000 --preserve-symlinks", + "test": "mocha tests/ --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options abstract=\"$PWD/config/abstract.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/config/respecConfig.json\",suiteLog='./suite.log',templateData=\"$PWD/reports/index.json\",title=\"VC v2.0 Interoperability Report\" --timeout 15000 --preserve-symlinks", "lint": "eslint ." }, "repository": {