mirror of https://github.com/status-im/metro.git
Fix OSS tests
Reviewed By: bestander Differential Revision: D3088301 fb-gh-sync-id: 310d9c7c1956f21f3c8e5da6a1455c2a9fad2d04 shipit-source-id: 310d9c7c1956f21f3c8e5da6a1455c2a9fad2d04
This commit is contained in:
parent
ed654c022e
commit
cccbb342a0
|
@ -41,16 +41,18 @@ describe('Bundler', function() {
|
|||
isAsset,
|
||||
isAsset_DEPRECATED,
|
||||
isJSON,
|
||||
isPolyfill,
|
||||
resolution,
|
||||
}) {
|
||||
return {
|
||||
path,
|
||||
resolution,
|
||||
getDependencies() { return Promise.resolve(dependencies); },
|
||||
getName() { return Promise.resolve(id); },
|
||||
isJSON() { return isJSON; },
|
||||
isAsset() { return isAsset; },
|
||||
isAsset_DEPRECATED() { return isAsset_DEPRECATED; },
|
||||
getDependencies: () => Promise.resolve(dependencies),
|
||||
getName: () => Promise.resolve(id),
|
||||
isJSON: () => isJSON,
|
||||
isAsset: () => isAsset,
|
||||
isAsset_DEPRECATED: () => isAsset_DEPRECATED,
|
||||
isPolyfill: () => isPolyfill,
|
||||
read: () => ({
|
||||
code: 'arbitrary',
|
||||
source: 'arbitrary',
|
||||
|
|
|
@ -388,8 +388,9 @@ class Bundler {
|
|||
if (response.dependencies.length > 0) {
|
||||
const numModuleSystemDependencies =
|
||||
this._resolver.getModuleSystemDependencies({dev, unbundle}).length;
|
||||
|
||||
entryFilePath = response.dependencies[
|
||||
response.numPrependedDependencies +
|
||||
(response.numPrependedDependencies || 0) +
|
||||
numModuleSystemDependencies
|
||||
].path;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue