diff --git a/__tests__/download.test.ts b/__tests__/download.test.ts index 1b74d70..0effc40 100644 --- a/__tests__/download.test.ts +++ b/__tests__/download.test.ts @@ -76,6 +76,15 @@ describe('download', () => { }) ) expect(core.info).toHaveBeenCalledWith('Total of 1 artifact(s) downloaded') + + expect(core.setOutput).toHaveBeenCalledWith( + 'download-path', + expect.any(String) + ) + + expect(core.info).toHaveBeenCalledWith( + 'Download artifact has finished successfully' + ) }) test('downloads multiple artifacts when no name or pattern provided', async () => {