Skip to content

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
asadali214 committed Jun 27, 2024
1 parent 945c8c6 commit c55c5e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/schema/test/types/object.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('Object', () => {
const output = validateAndMap(input, userSchema);
const expected: SchemaType<typeof userSchema> = {
id: 'John Smith',
age: 50
age: 50,
};
expect(output.errors).toBeFalsy();
expect((output as any).result).toStrictEqual(expected);
Expand All @@ -71,7 +71,7 @@ describe('Object', () => {
const expected: SchemaType<typeof userSchema> = {
id: 'John Smith',
age: 50,
work: null
work: null,
};
expect(output.errors).toBeFalsy();
expect((output as any).result).toStrictEqual(expected);
Expand Down

0 comments on commit c55c5e3

Please sign in to comment.