Skip to content

Commit f65ed4e

Browse files
committed
test: use vi.waitFor
1 parent 63d6138 commit f65ed4e

File tree

2 files changed

+13
-23
lines changed

2 files changed

+13
-23
lines changed

packages/typegen/test/types.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test('types are correct', async () => {
5555

5656
expect(logger.warn).toHaveBeenCalledTimes(1)
5757
// todo: fix this. I don't think we should be logging an error for a valid query that can't be typegen'd.
58-
expect(logger.warn.mock.calls[0][0]).toMatchInlineSnapshot(`
58+
expect(logger.warn.mock.calls[0][0].replaceAll(/\n\s+\n/g, '\n\n')).toMatchInlineSnapshot(`
5959
"Error: ./test/types.test.ts.ignoreme.copy.ts:16 [!] Query is not typeable.
6060
Caused by: Error: Walking AST failed for
6161
create table types_test_table(foo int primary key, bar text);

packages/typegen/test/watch.test.ts

+12-22
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as fs from 'fs'
22
import * as fsSyncer from 'fs-syncer'
33
import * as path from 'path'
44

5-
import {test as _test, beforeEach, expect, vi as jest} from 'vitest'
5+
import {test as _test, beforeEach, expect, vi as jest, vi} from 'vitest'
66

77
import * as typegen from '../src'
88
import {getPureHelper as getHelper} from './helper'
@@ -37,6 +37,10 @@ test(
3737

3838
const {watch} = await typegen.generate(typegenOptions(syncer.baseDir))
3939

40+
await vi.waitFor(() => {
41+
expect(syncer.yaml()).toContain('// Generated by @pgkit/typegen')
42+
})
43+
4044
expect(syncer.yaml()).toMatchInlineSnapshot(`
4145
"---
4246
file1.ts: |-
@@ -176,26 +180,12 @@ test(
176180
{retry: 3},
177181
)
178182

179-
const waitForLog = async (match: RegExp, timeoutMs = 3000) => {
180-
return new Promise<void>((resolve, reject) => {
181-
const start = Date.now()
182-
const end = start + timeoutMs
183-
const check = () => {
183+
const waitForLog = async (match: RegExp) => {
184+
await vi.waitFor(
185+
() => {
184186
const jsonLogs = JSON.stringify(logger.info.mock.calls, null, 2)
185-
if (match.test(jsonLogs)) {
186-
resolve()
187-
} else if (Date.now() > end) {
188-
reject(
189-
new Error(
190-
`Logs matching /${match.source}/ not found after ${timeoutMs}ms. Calls: ${JSON.stringify(logger.info.mock.calls, null, 2)}`,
191-
{cause: logger.info.mock.calls},
192-
),
193-
)
194-
} else {
195-
setTimeout(check, 20)
196-
}
197-
}
198-
199-
check()
200-
})
187+
expect(jsonLogs).toMatch(match)
188+
},
189+
{timeout: 3000},
190+
)
201191
}

0 commit comments

Comments
 (0)