testilo 29.0.0 → 29.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -552,8 +552,7 @@ const {digest} = require('testilo/digest');
552
552
  const digesterDir = `${process.env.FUNCTIONDIR}/digest/tdp99a`;
553
553
  const {digester} = require(`${digesterDir}/index`);
554
554
  const scoredReport = …;
555
- const reportDirURL = 'https://xyz.org/a11yTesting/reports';
556
- digest(digester, scoredReport, reportDirURL)
555
+ digest(digester, scoredReport)
557
556
  .then(digestedReport => {…});
558
557
  ```
559
558
 
@@ -561,8 +560,6 @@ The first argument to `digest()` is a digester. In this example, it has been obt
561
560
 
562
561
  The second argument to `digest()` is a scored report object. It may have been read from a JSON file and parsed, or may be a scored report output by `score()`.
563
562
 
564
- The third argument is the absolute or relative URL of a directory where the reports being digested are located. The `digest()` function needs that URL because a digest includes a link to the full scored report. The link concatenates the directory URL with the report ID and a `.json` suffix.
565
-
566
563
  The `digest()` function returns a promise resolved with a digest. The invoking module can further dispose of the digest as needed.
567
564
 
568
565
  ##### By a user
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "29.0.0",
3
+ "version": "29.0.1",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {