From fd7c20fdde8c30bf465fc62a9988f691dba9091a Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Thu, 23 May 2024 13:21:26 -0400 Subject: [PATCH] Apply suggestions from @TallTed Co-authored-by: Ted Thibodeau Jr --- README.md | 10 +++++----- localConfig.example.cjs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1523021..77133f8 100644 --- a/README.md +++ b/README.md @@ -248,13 +248,13 @@ This file must be a CommonJS module that exports an object containing a The format of the object contained in the `implementations` array is identical to the one defined in -[VC Test Suite Implementations](https://github.com/w3c/vc-test-suite-implementations?tab=readme-ov-file#usage)). -The `implementations` array may contain more than one implementation object, to -test multiple implementations in one run. +[the **_Testing locally_** section of VC Test Suite Implementations](https://github.com/w3c/vc-test-suite-implementations?tab=readme-ov-file#testing-locally)). +The `implementations` array may contain more than one implementation object, +enabling you to test multiple implementations in one run. ```js -// localConfig.cjs defining local implementations -// you can specify a BASE_URL before running the tests such as: +// localConfig.cjs defines local implementations +// Before running the tests, you can specify a BASE_URL, such as // BASE_URL=http://localhost:40443/zDdfsdfs npm test const baseUrl = process.env.BASE_URL || 'https://localhost:40443/id'; module.exports = { diff --git a/localConfig.example.cjs b/localConfig.example.cjs index e09c578..409e9c3 100644 --- a/localConfig.example.cjs +++ b/localConfig.example.cjs @@ -1,5 +1,5 @@ // Rename this file to localConfig.cjs -// you can specify a BASE_URL before running the tests such as: +// Before running the tests, you can specify a BASE_URL, such as // BASE_URL=http://localhost:40443/zDdfsdfs npm test const baseUrl = process.env.BASE_URL || 'https://localhost:40443/id'; module.exports = {