Fix OSS tests

Reviewed By: bestander

Differential Revision: D3088301

fb-gh-sync-id: 310d9c7c1956f21f3c8e5da6a1455c2a9fad2d04
shipit-source-id: 310d9c7c1956f21f3c8e5da6a1455c2a9fad2d04
This commit is contained in:
Mart?n Bigio 2016-03-23 15:16:46 -07:00 committed by Facebook Github Bot 9
parent ed654c022e
commit cccbb342a0
2 changed files with 9 additions and 6 deletions

View File

@ -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',

View File

@ -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;
}