Skip to content

Commit 74af680

Browse files
committedJan 8, 2023
refactor!: lodash.mergeWith customizer now allows unsetting options by setting them to undefined
BREAKING CHANGE: In previous versions, the lodash.mergeWith customizer skipped source properties that resolved to `undefined`. With this version, the customizer now unsets these properties (sets them to `undefined`), allowing the end user to easily unset defaults (e.g. `filename`).
1 parent 9d1b321 commit 74af680

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed
 

‎src/plugin-tester.ts

+28-6
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@ export function pluginTester(options: PluginTesterOptions = {}) {
166166
}
167167

168168
function tryInferFilepath() {
169+
// ? Allow the end user to unset filepath by setting it to undefined
170+
if ('filepath' in rawBaseConfig || 'filename' in rawBaseConfig) {
171+
return undefined;
172+
}
173+
169174
const oldStackTraceLimit = Error.stackTraceLimit;
170175
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
171176

@@ -448,12 +453,12 @@ export function pluginTester(options: PluginTesterOptions = {}) {
448453
{ babelOptions: baseBabelOptions },
449454
{
450455
babelOptions: {
451-
filename: codePath,
456+
filename: codePath || execPath || baseBabelOptions.filename,
452457
// ? If they have a babelrc, then we'll let them use that
453458
babelrc: hasBabelrc
454459
}
455460
},
456-
{ babelOptions },
461+
{ babelOptions: babelOptions || {} },
457462
{
458463
testBlockTitle: `${currentTestNumber++}. ${title || blockTitle}`,
459464
only,
@@ -555,9 +560,14 @@ export function pluginTester(options: PluginTesterOptions = {}) {
555560
{ [$type]: 'test-object' } as const,
556561
{ babelOptions: baseBabelOptions },
557562
{
558-
babelOptions: { filename: getAbsolutePath(filepath, codeFixture) ?? filepath }
563+
babelOptions: {
564+
filename:
565+
getAbsolutePath(filepath, codeFixture) ||
566+
filepath ||
567+
baseBabelOptions.filename
568+
}
559569
},
560-
{ babelOptions },
570+
{ babelOptions: babelOptions || {} },
561571
{
562572
snapshot: snapshot ?? baseSnapshot,
563573
testBlockTitle: `${currentTestNumber++}. ${title || pluginName || presetName}`,
@@ -916,8 +926,20 @@ export function pluginTester(options: PluginTesterOptions = {}) {
916926
}
917927
}
918928

919-
function mergeCustomizer(objValue: unknown[], srcValue: unknown) {
920-
return Array.isArray(objValue) ? objValue.concat(srcValue) : undefined;
929+
function mergeCustomizer(
930+
objValue: unknown,
931+
srcValue: unknown,
932+
key: string,
933+
object: Record<string, unknown>,
934+
source: Record<string, unknown>
935+
) {
936+
if (object && srcValue === undefined && key in source) {
937+
delete object[key];
938+
} else if (Array.isArray(objValue)) {
939+
return objValue.concat(srcValue);
940+
}
941+
942+
return undefined;
921943
}
922944

923945
function getAbsolutePath(filename?: string, basename?: string) {

0 commit comments

Comments
 (0)
Please sign in to comment.