Skip to content

Commit

Permalink
update types test
Browse files Browse the repository at this point in the history
  • Loading branch information
reiv authored Feb 8, 2024
1 parent 3432774 commit 050e973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe("Types", () => {
foo: { bar: { baz: string | null } | null } | null;
}>;
expectTypeOf<NestedNull["foo"]["bar"]["baz"]>().toMatchTypeOf<
FormBuilder<string>
FormBuilder<string | null>
>();

// Undefined
Expand Down

0 comments on commit 050e973

Please sign in to comment.