Skip to content

Commit 20be175

Browse files
committed
cleanup
1 parent 37cd9e9 commit 20be175

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/lib/index.mjs

+5
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ jsf.resolveWithContext = (schema, refs, cwd) => {
113113
refs = {};
114114
}
115115

116+
// investigate this!!
117+
if (!schema) {
118+
return Promise.resolve({});
119+
}
120+
116121
// normalize basedir (browser aware)
117122
cwd = cwd || (typeof process !== 'undefined' && typeof process.cwd === 'function' ? process.cwd() : '');
118123
cwd = `${cwd.replace(/\/+$/, '')}/`;

tests/unit/core/traverse.spec.mjs

+8-2
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,21 @@ describe('Traverse', () => {
4949
type: 'string',
5050
generate: () => 'foo',
5151
},
52+
minItems: 1,
5253
maxItems: 1,
5354
};
5455

5556
expect(traverse(schema, [], mockResolve, schema)).to.eql({
56-
value: [],
57+
value: ['foo'],
5758
context: {
5859
schemaPath: [],
5960
title: schema.title,
60-
items: []
61+
items: [
62+
{
63+
schemaPath: ['items'],
64+
description: schema.items.description,
65+
},
66+
],
6167
},
6268
});
6369
});

0 commit comments

Comments
 (0)