From 8f9667c57210bc232cd5dd1a83129c826343e02f Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Thu, 21 Jul 2022 19:54:01 -0500 Subject: [PATCH] Convert scanner test to module --- test/scanner/{client.test.js => client.test.mjs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename test/scanner/{client.test.js => client.test.mjs} (98%) diff --git a/test/scanner/client.test.js b/test/scanner/client.test.mjs similarity index 98% rename from test/scanner/client.test.js rename to test/scanner/client.test.mjs index 9c79d79..545753f 100644 --- a/test/scanner/client.test.js +++ b/test/scanner/client.test.mjs @@ -36,8 +36,8 @@ const tempPath = 'test/_artifacts/temp' const plainAppBundles = glob .sync( `${ appsPath }/**/*.app`, appGlobOptions ) .filter( bundlePath => { - return true - // return bundlePath.includes( 'BlueJeans' ) + // return true + return bundlePath.includes( 'App' ) })