testaro 8.1.3 → 8.1.4

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 +17 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -709,7 +709,23 @@ In addition to their uses described above, environment variables can be used by
709
709
 
710
710
  Before executing a Testaro script, you can optionally also set `process.env.DEBUG` (to `'true'` or anything else) and/or `process.env.WAITS` (to a non-negative integer). The effects of these variables are described in the `run.js` file.
711
711
 
712
- You may store environment variables in an untracked `.env` file if you wish, and Testaro will recognize them.
712
+ You may store environment variables in an untracked `.env` file if you wish, and Testaro will recognize them. Here is a template for a `.env` file:
713
+
714
+ ```conf
715
+ URL_INJECT=yes
716
+ TENON_USER=you@yourdomain.tld
717
+ TENON_PASSWORD=yourTenonPassword
718
+ WAVE_KEY=yourwavekey
719
+ PROTOCOL=https
720
+ JOB_URL=yourserver.tld/job
721
+ REPORT_URL=yourserver.tld/report
722
+ SCRIPTDIR=../testing/scripts
723
+ REPORTDIR=../testing/reports/raw
724
+ JOBDIR=../testing/watch/ThisWorkstation
725
+ DONEDIR=../testing/done
726
+ AGENT=ThisWorkstation
727
+ DEBUG=false
728
+ ```
713
729
 
714
730
  ## Validation
715
731
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "8.1.3",
3
+ "version": "8.1.4",
4
4
  "description": "Automation of accessibility testing",
5
5
  "main": "index.js",
6
6
  "scripts": {