diff --git a/helpers/app-files-scanner.js b/helpers/app-files-scanner.js index 9efa3a1..db14166 100644 --- a/helpers/app-files-scanner.js +++ b/helpers/app-files-scanner.js @@ -5,7 +5,7 @@ import { isString } from './check-types.js' import parseMacho from './macho/index.js' import prettyBytes from 'pretty-bytes' -import { AppScan } from '~/helpers/scanner/client' +import { AppScan } from '~/helpers/scanner/client.mjs' const scannerVersion = (() => { // If there's no window diff --git a/helpers/scanner/client.js b/helpers/scanner/client.mjs similarity index 100% rename from helpers/scanner/client.js rename to helpers/scanner/client.mjs diff --git a/test/scanner/client.test.mjs b/test/scanner/client.test.mjs index 545753f..1fdcc59 100644 --- a/test/scanner/client.test.mjs +++ 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( 'App' ) + return true + // return bundlePath.includes( 'AV' ) })