mirror of
https://github.com/mempool/mempool.git
synced 2025-04-22 14:34:47 +02:00
Fix config unit test that was returning early
This commit is contained in:
parent
d5dca95fbe
commit
17f1cb8648
@ -181,12 +181,12 @@ describe('Mempool Backend Config', () => {
|
||||
// We have a few cases where we can't follow the pattern
|
||||
if (root === 'MEMPOOL' && key === 'HTTP_PORT') {
|
||||
console.log('skipping check for MEMPOOL_HTTP_PORT');
|
||||
return;
|
||||
continue;
|
||||
}
|
||||
switch (typeof value) {
|
||||
case 'object': {
|
||||
if (Array.isArray(value)) {
|
||||
return;
|
||||
continue;
|
||||
} else {
|
||||
parseJson(value, key);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user