Pass all message details through receivers

This commit is contained in:
Sam Carlton 2022-08-20 21:34:29 -05:00
parent 8a324777e0
commit 8b15f2580b
3 changed files with 7 additions and 5 deletions

View file

@ -86,7 +86,9 @@ describe.concurrent('Apps', async () => {
const file = await makeZipFromBundlePath( bundlePath )
// Scan the app
const { scan } = await runScanWorker( file )
const { scan } = await runScanWorker( file, ( details ) => {
console.log( 'New message from runScanWorker:', details )
} )
it( `Can read info.plist for ${ appName } bundle` , () => {