mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 01:40:08 +00:00
Fix OSS tests
Reviewed By: bestander Differential Revision: D3088301 fb-gh-sync-id: 310d9c7c1956f21f3c8e5da6a1455c2a9fad2d04 shipit-source-id: 310d9c7c1956f21f3c8e5da6a1455c2a9fad2d04
This commit is contained in:
parent
4f8668b110
commit
3888d052f1
@ -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',
|
||||
|
3
packager/react-packager/src/Bundler/index.js
vendored
3
packager/react-packager/src/Bundler/index.js
vendored
@ -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…
x
Reference in New Issue
Block a user