Skip to content

Commit d4f6686

Browse files
committed
check
1 parent 951cceb commit d4f6686

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/transform/__tests__/full-transform-flow.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ describe('Full Transform Flow Tests', () => {
7373
testFiles.forEach((filename) => {
7474
it(`tests end-to-end flow for ${filename}`, async () => {
7575
const sql = generated[filename as keyof typeof generated];
76-
76+
if (!sql) {
77+
throw new Error(`SQL for ${filename} not found`);
78+
}
7779
// Step 1: Parse with PG13
7880
const pg13Ast = await pg13Parser.parse(sql);
7981

0 commit comments

Comments
 (0)