testaro 72.5.0 → 72.5.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 -30
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -137,36 +137,7 @@ You can make `testaro` a dependency in another application. As noted at the begi
137
137
 
138
138
  ## Environment configuration
139
139
 
140
- The `.env` file stores your decisions about the environment in which Testaro runs. The variables that can be defined there are:
141
-
142
- ```conf
143
- # Whether the browsers launched by Testaro should have visible windows.
144
- HEADED_BROWSER=false
145
- # Whether console logging in launched browsers should be mirrored to the Testaro console.
146
- DEBUG=false
147
- # Whether to disable Puppeteer log warnings of a future headless-mode deprecation.
148
- PUPPETEER_DISABLE_HEADLESS_WARNING=true
149
- # How much time, in milliseconds, to insert between Playwright operations for debugging.
150
- WAITS=0
151
- # API key to enable the WAVE tool.
152
- WAVE_KEY=yourwavekey (get it from [WebAim](https://wave.webaim.org/api/)).
153
- #----------------------------
154
- # When Testaro listens for new jobs in a directory:
155
- # Directory where it listens for them.
156
- JOBDIR=../testing/jobs
157
- # Directory into which Testaro saves the reports of those jobs.
158
- REPORTDIR=../testing/reports
159
- # Name of this Testaro instance when it listens for jobs and sends reports to requesting hosts.
160
- AGENT=agentabc
161
- #----------------------------
162
- # When Testaro polls a network host to ask for new jobs, data on the host.
163
- # URL to poll.
164
- NETWATCH_JOB=http://localhost:3000/api/assignJob/agentabc
165
- # URL to which to send completed job reports.
166
- NETWATCH_REPORT=http://localhost:3000/api/takeReport/agentabc
167
- # Password to give to the host to authenticate this instance.
168
- NETWATCH_AUTH=abcxyz
169
- ```
140
+ The `.env` file stores your decisions about the environment in which Testaro runs. The variables that can be defined there are documented in the `env.example` file.
170
141
 
171
142
  ## Jobs
172
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "72.5.0",
3
+ "version": "72.5.1",
4
4
  "description": "Run 1300 web accessibility tests from 10 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {