testilo 36.0.1 → 36.0.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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -394,8 +394,8 @@ A module can invoke `merge()` in this way:
|
|
|
394
394
|
const {merge} = require('testilo/merge');
|
|
395
395
|
const script = …;
|
|
396
396
|
const batch = …;
|
|
397
|
-
const
|
|
398
|
-
const jobs = merge(script, batch,
|
|
397
|
+
const executionTimeStamp = '241215T1200';
|
|
398
|
+
const jobs = merge(script, batch, executionTimeStamp);
|
|
399
399
|
```
|
|
400
400
|
|
|
401
401
|
The first two arguments are a script and a batch obtained from files or from prior calls to `script()` and `batch()`.
|