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 4d97aaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/lts/params.test.ts
Expand Up @@ -100,10 +100,10 @@ SELECT (SELECT {
str: string;
numArr: readonly number[];
optBool?: boolean | null;
tuple: readonly [string, number, boolean[]];
namedTuple: Readonly<{ a: number; b: bigint[]; c: string }>;
tuple: readonly [string, number, readonly boolean[]];
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 4d97aaf

Please sign in to comment.