testaro 33.1.0 → 33.1.2
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.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -142,8 +142,6 @@ Here is an example of a job:
|
|
|
142
142
|
what: 'Test W3C with 2 alfa rules',
|
|
143
143
|
strict: true,
|
|
144
144
|
timeLimit: 65,
|
|
145
|
-
standard: 'only',
|
|
146
|
-
observe: false,
|
|
147
145
|
acts: [
|
|
148
146
|
{
|
|
149
147
|
type: 'launch',
|
|
@@ -168,6 +166,8 @@ Here is an example of a job:
|
|
|
168
166
|
},
|
|
169
167
|
requester: 'user@domain.org'
|
|
170
168
|
},
|
|
169
|
+
standard: 'only',
|
|
170
|
+
observe: false,
|
|
171
171
|
timeStamp: '241208T1200',
|
|
172
172
|
creationTimeStamp: '241114T0328',
|
|
173
173
|
sendReportTo: 'https://localhost:3004/testapp/api/report',
|
|
@@ -184,11 +184,11 @@ Job properties:
|
|
|
184
184
|
- `what`: a description of the job.
|
|
185
185
|
- `strict`: `true` or `false`, indicating whether _substantive redirections_ should be treated as failures. These are redirections that do more than add or subtract a final slash.
|
|
186
186
|
- `timeLimit`: the number of seconds allowed for the execution of the job.
|
|
187
|
+
- `acts`: an array of the acts to be performed (documented below).
|
|
187
188
|
- `standard`: `'also'`, `'only'`, or `'no'`, indicating whether rule-violation instances are to be reported in tool-native formats and also in the Testaro standard format, only in the standard format, or only in the tool-native formats.
|
|
188
|
-
- `observe`: `true` or `false`, indicating whether tool and Testaro-rule invocations are to be reported as they occur
|
|
189
|
+
- `observe`: `true` or `false`, indicating whether tool and Testaro-rule invocations are to be reported to the server as they occur, so that the server can update a waiting client.
|
|
189
190
|
- `timeStamp`: a string in `yymmddThhMM` format, specifying a date and time before which the job is not to be performed.
|
|
190
191
|
- `creationTimeStamp`: a string in `yymmddThhMM` format, describing when the job was created.
|
|
191
|
-
- `acts`: an array of the acts to be performed (documented below).
|
|
192
192
|
- `sources`: an object describing where the job came from:
|
|
193
193
|
- `script`: the ID of the script (as used by Testilo) from which the job was made, or an empty string if none.
|
|
194
194
|
- `batch` : the ID of the batch (as used by Testilo) from which the target of this job was drawn, or an empty string if none.
|
|
@@ -197,7 +197,7 @@ Job properties:
|
|
|
197
197
|
- `creationTimeStamp`: the date and time in `yymmddThhMM` format when the job was created.
|
|
198
198
|
- `timeStamp`: the date and time in `yymmddThhMM` format before which the job is not to be assigned.
|
|
199
199
|
- `sendReportTo`: the URL to which the report of the job is to be sent, or an empty string if the report is not to be sent to a server.
|
|
200
|
-
- `mergeID`: a randomly generated alphanumeric ID for the process (such as a merger
|
|
200
|
+
- `mergeID`: a randomly generated alphanumeric ID for the process (such as a Testilo merger of a script and a batch) that created the job, or an empty string if none.
|
|
201
201
|
|
|
202
202
|
### Reports
|
|
203
203
|
|