testaro 47.2.0 → 47.2.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.
- package/dirWatch.js +2 -2
- package/package.json +1 -1
package/dirWatch.js
CHANGED
|
@@ -92,7 +92,7 @@ const wait = ms => {
|
|
|
92
92
|
}, ms);
|
|
93
93
|
});
|
|
94
94
|
};
|
|
95
|
-
/*
|
|
95
|
+
/*
|
|
96
96
|
Checks for a directory job and, when found, performs and reports it.
|
|
97
97
|
Arguments:
|
|
98
98
|
0. Whether to continue watching after a job is run.
|
|
@@ -122,7 +122,7 @@ exports.dirWatch = async (isForever, intervalInSeconds) => {
|
|
|
122
122
|
report.observe = false;
|
|
123
123
|
report.sendReportTo = '';
|
|
124
124
|
const {id} = job;
|
|
125
|
-
console.log(
|
|
125
|
+
console.log(`\n\nDirectory job ${id} ready to do (${nowString()})`);
|
|
126
126
|
// Perform it.
|
|
127
127
|
await doJob(report);
|
|
128
128
|
console.log(`Job ${id} finished (${nowString()})`);
|