Skip to content

Commit 730af54

Browse files
committed
run cs-format on modified files
1 parent 8fa17d0 commit 730af54

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

packages/utils/test/schema/toPathSchemaTest.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ export default function toPathSchemaTest(testValidator: TestValidatorType) {
1616
__rjsf_additionalProperties: true,
1717
});
1818
});
19-
it('should return a pathSchema for root field, without additional properties', () => {
20-
const schema: RJSFSchema = { type: 'string', additionalProperties: false };
19+
it("should return a pathSchema for root field, without additional properties", () => {
20+
const schema: RJSFSchema = {
21+
type: "string",
22+
additionalProperties: false,
23+
};
2124

22-
expect(toPathSchema(testValidator, schema)).toEqual({ $name: '' });
25+
expect(toPathSchema(testValidator, schema)).toEqual({ $name: "" });
2326
});
24-
it('should return a pathSchema for nested objects', () => {
27+
it("should return a pathSchema for nested objects", () => {
2528
const schema: RJSFSchema = {
2629
type: "object",
2730
properties: {

0 commit comments

Comments
 (0)