mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-26 05:15:49 +08:00
Rely only on scriptURL when loading images
Reviewed By: @foghina Differential Revision: D2527119 fb-gh-sync-id: e2a9618f729a2ec03b1959fa13fae46620cc379e
This commit is contained in:
committed by
facebook-github-bot-9
parent
5e33dbcfcc
commit
62d0586e59
@@ -25,7 +25,6 @@ function expectResolvesAsset(input, expectedSource) {
|
||||
describe('resolveAssetSource', () => {
|
||||
beforeEach(() => {
|
||||
jest.resetModuleRegistry();
|
||||
__DEV__ = true;
|
||||
});
|
||||
|
||||
it('returns same source for simple static and network images', () => {
|
||||
@@ -109,11 +108,10 @@ describe('resolveAssetSource', () => {
|
||||
|
||||
});
|
||||
|
||||
describe('bundle was loaded from file (PROD) on iOS', () => {
|
||||
describe('bundle was loaded from file on iOS', () => {
|
||||
beforeEach(() => {
|
||||
NativeModules.SourceCode.scriptURL =
|
||||
'file:///Path/To/Simulator/main.bundle';
|
||||
__DEV__ = false;
|
||||
Platform.OS = 'ios';
|
||||
});
|
||||
|
||||
@@ -138,11 +136,10 @@ describe('resolveAssetSource', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('bundle was loaded from file (PROD) on Android', () => {
|
||||
describe('bundle was loaded from file on Android', () => {
|
||||
beforeEach(() => {
|
||||
NativeModules.SourceCode.scriptURL =
|
||||
'file:///Path/To/Simulator/main.bundle';
|
||||
__DEV__ = false;
|
||||
Platform.OS = 'android';
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user