Skip to content

Commit 63d6138

Browse files
committed
test: update snapshots
1 parent 4151f14 commit 63d6138

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/typegen/test/options.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ test(`queries with syntax errors don't affect others`, async () => {
552552
Error:
553553
./test/fixtures/options.test.ts/queries-with-syntax-errors-don-t-affect-others/index.ts:4
554554
[!] Query is not typeable.
555-
Caused by: Error: Walking AST failed
555+
Caused by: Error: Walking AST failed for select this is a nonsense query which will cause an error
556556
Caused by: Error: Syntax error at line 1 col 16:
557557
558558
1 select this is a nonsense query which will cause an error

packages/typegen/test/types.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ test('types are correct', async () => {
5757
// todo: fix this. I don't think we should be logging an error for a valid query that can't be typegen'd.
5858
expect(logger.warn.mock.calls[0][0]).toMatchInlineSnapshot(`
5959
"Error: ./test/types.test.ts.ignoreme.copy.ts:16 [!] Query is not typeable.
60-
Caused by: Error: Walking AST failed
60+
Caused by: Error: Walking AST failed for
61+
create table types_test_table(foo int primary key, bar text);
62+
63+
insert into types_test_table(foo, bar) values (1, 'a')
64+
6165
Caused by: AssertionError [ERR_ASSERTION]: Can't parse query
6266
---
6367

0 commit comments

Comments
 (0)