diff --git a/Dockerfile b/Dockerfile index 0ccc5ec..eec7056 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 b7144ac..b15d404 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": {