We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd50cda commit 27f1f5cCopy full SHA for 27f1f5c
packages/mongodb-memory-server-core/src/util/resolveConfig.ts
@@ -97,7 +97,7 @@ export function resolveConfig(variableName: ResolveConfigVariables): string | un
97
process.env[envName(variableName)] ??
98
packageJsonConfig[camelCase(variableName)] ??
99
defaultValues.get(variableName)
100
- );
+ )?.toString();
101
}
102
103
export default resolveConfig;
0 commit comments