()
| 35 | } |
| 36 | |
| 37 | async function readQueueFile() { |
| 38 | return JSON.parse(await readFile(join(dir, QUEUE_FILE), 'utf-8')) as unknown; |
| 39 | } |
| 40 | |
| 41 | describe('goal queue store', () => { |
| 42 | it('reads an empty queue when the file is missing', async () => { |
no test coverage detected