Skip to content

Commit c4e7fb2

Browse files
committedSep 26, 2024
Add MockStatusReporter to library
1 parent d3a4d5f commit c4e7fb2

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Function Name | Arguments | Note
4646
`async zipDirectory` | <ul><li>`sourceDir` (string)</li><li>`outPath` (string)</li><li>`logger` (object, optional)</li></ul> | Create a zip file of a directory. If specified, `logger` must have a `log(msg)` method.
4747
`mkdirpSync` | `targetDir` (string) | Recreation of shell command `mkdir -p`
4848
`async deleteS3Keys` | `keys` (Array[string]) | Delete some files in the `BLOB_BUCKET` from S3
49+
`class MockStatusReporter` | *none* | For testing, logs are available as array on `logs` property
4950

5051
## Barebones Example
5152

‎index.js

+14
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,17 @@ export async function deleteS3Keys(keys) {
205205
throw error;
206206
}
207207
}
208+
209+
export class MockStatusReporter {
210+
constructor() {
211+
this.logs = [];
212+
}
213+
214+
log(msg, data) {
215+
this.logs.push({
216+
msg,
217+
data,
218+
time: process.uptime(),
219+
});
220+
}
221+
}

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "circuitscan-pipeline-runner",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"main": "index.js",
55
"type": "module",
66
"dependencies": {

0 commit comments

Comments
 (0)