Skip to content

Commit

Permalink
Change params test to reflect deep readonly arrays (again this is ask…
Browse files Browse the repository at this point in the history
…ing for less since it is input)
  • Loading branch information
CarsonF committed Mar 1, 2024
1 parent 16c0625 commit ff8f48b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/lts/params.test.ts
Expand Up @@ -101,9 +101,9 @@ SELECT (SELECT {
numArr: readonly number[];
optBool?: boolean | null;
tuple: readonly [string, number, boolean[]];
namedTuple: Readonly<{ a: number; b: bigint[]; c: string }>;
namedTuple: Readonly<{ a: number; b: readonly bigint[]; c: string }>;
jsonTuple: readonly [unknown];
people: Readonly<{ name: string; age: number; tags: string[] }[]>;
people: Readonly<{ name: string; age: number; tags: readonly string[] }[]>;
}
>
>(true);
Expand Down

0 comments on commit ff8f48b

Please sign in to comment.