mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b5ff26b0b9
Summary: Fixes https://github.com/facebook/react-native/issues/33751 Relates to https://github.com/facebook/react-native/issues/33576 Jest 28 removed support for returning a string in the process method of a transformer (https://jestjs.io/docs/upgrading-to-jest28#transformer). This PR changes assetFileTransformer to return an object instead of a string. ## Changelog [Internal] [Fixed] - Return object from assetFileTransformer Pull Request resolved: https://github.com/facebook/react-native/pull/33756 Test Plan: Tests pass with Jest 28 when this change is made. Reviewed By: cipolleschi Differential Revision: D37242038 Pulled By: cortinico fbshipit-source-id: d8a5054f5378183f644cd1458785084b26782193
33 lines
876 B
JavaScript
33 lines
876 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/* eslint-env node */
|
|
|
|
const path = require('path');
|
|
const createCacheKeyFunction =
|
|
require('@jest/create-cache-key-function').default;
|
|
|
|
module.exports = {
|
|
// Mocks asset requires to return the filename. Makes it possible to test that
|
|
// the correct images are loaded for components. Essentially
|
|
// require('img1.png') becomes `Object { "testUri": 'path/to/img1.png' }` in
|
|
// the Jest snapshot.
|
|
process: (_, filename) => ({
|
|
code: `module.exports = {
|
|
testUri:
|
|
${JSON.stringify(
|
|
path.relative(__dirname, filename).replace(/\\/g, '/'),
|
|
)}
|
|
};`,
|
|
}),
|
|
getCacheKey: createCacheKeyFunction([__filename]),
|
|
};
|