From 383a4b27308501875ba642b3a99f705d389868c3 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 18 Jul 2022 21:21:53 -0500 Subject: [PATCH] Add notes on unsupported bundles --- test/scanner/client.test.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/test/scanner/client.test.js b/test/scanner/client.test.js index 4e147e4..4d84a0e 100644 --- a/test/scanner/client.test.js +++ b/test/scanner/client.test.js @@ -23,7 +23,19 @@ const appsPath = 'test/_artifacts/apps' const tempPath = 'test/_artifacts/temp' -const plainAppBundles = glob.sync( `${ appsPath }/**/*.app`, appGlobOptions ) +// TODO: Unsupported Apps: +// Alt Tab 6.29.0 - Hangs +// Silicon - Fail with both MachoNode and MachoManiac +// arm_idafree76_mac 7.6 - Hangs +// Batteries 2.2.4 - Hangs +// BetterZip 5.1.1 - Hangs +// BlueJeans - May work but doesn't work with zip compression +const plainAppBundles = glob + .sync( `${ appsPath }/**/*.app`, appGlobOptions ) + .filter( bundlePath => { + return true + // return bundlePath.includes( 'BlueJeans' ) + }) async function makeZipFromBundlePath ( bundlePath ) {