From 5fbbf22e98b12d9ea6f7b0e97af12d8607a33402 Mon Sep 17 00:00:00 2001 From: nickevansuk <2616208+nickevansuk@users.noreply.github.com> Date: Wed, 2 Aug 2023 12:31:45 +0100 Subject: [PATCH] fix: Clarify error message for cert generation --- packages/openactive-integration-tests/test/reporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/openactive-integration-tests/test/reporter.js b/packages/openactive-integration-tests/test/reporter.js index c6f07a9fd3..7c684d0eac 100644 --- a/packages/openactive-integration-tests/test/reporter.js +++ b/packages/openactive-integration-tests/test/reporter.js @@ -202,7 +202,7 @@ class Reporter { } if (!validationResult?.valid) { console.error(`\n${chalk.red( - 'A valid conformance certificate could not be generated.\n\nIf you have not already done so, try simply running `npm start`, without specifying a specific test subset, to ensure that all tests are run for this feature configuration.', + 'A valid conformance certificate could not be generated.\n\nIf you have not already done so, try simply running `npm start` without any parameters, to ensure that all tests are run for this feature configuration.', )}`); // Ensure that CI fails on validation error, without a stack trace process.exitCode = 1;