From bb7fd5ffa354901bdcef04a0280cd7f1e1957562 Mon Sep 17 00:00:00 2001 From: Christoph Pojer Date: Mon, 26 Oct 2015 11:59:10 -0700 Subject: [PATCH] Update to 0.6.1 Summary: This version should be more stable and has the `moduleNameMapper` feature that frantic was asking for - I will send a follow-up diff for that. I also fixed an issue with `module.parent` and a module inside of yeoman that thought it was owning the universe. See https://github.com/facebook/jest/blob/master/CHANGELOG.md#061 for a changelog since 0.5.6. public allow-crlf-text Reviewed By: javache Differential Revision: D2579041 fb-gh-sync-id: cb918875557f219239f49fc0ad49ac61d0884173 --- react-packager/src/Bundler/__tests__/Bundle-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-packager/src/Bundler/__tests__/Bundle-test.js b/react-packager/src/Bundler/__tests__/Bundle-test.js index 33b6646e..80a23335 100644 --- a/react-packager/src/Bundler/__tests__/Bundle-test.js +++ b/react-packager/src/Bundler/__tests__/Bundle-test.js @@ -188,7 +188,7 @@ describe('Bundle', function() { map: { file: 'image.png', mappings: 'AAAA;AACA;', - names: {}, + names: [], sources: [ 'image.png' ], sourcesContent: ['image module;\nimage module;'], version: 3, @@ -202,7 +202,7 @@ describe('Bundle', function() { map: { file: 'RunMainModule.js', mappings: 'AAAA;', - names: {}, + names: [], sources: [ 'RunMainModule.js' ], sourcesContent: [';require("foo");'], version: 3,