@@ -2,7 +2,7 @@ import * as fs from 'fs'
2
2
import * as fsSyncer from 'fs-syncer'
3
3
import * as path from 'path'
4
4
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'
6
6
7
7
import * as typegen from '../src'
8
8
import { getPureHelper as getHelper } from './helper'
37
37
38
38
const { watch} = await typegen . generate ( typegenOptions ( syncer . baseDir ) )
39
39
40
+ await vi . waitFor ( ( ) => {
41
+ expect ( syncer . yaml ( ) ) . toContain ( '// Generated by @pgkit/typegen' )
42
+ } )
43
+
40
44
expect ( syncer . yaml ( ) ) . toMatchInlineSnapshot ( `
41
45
"---
42
46
file1.ts: |-
@@ -176,26 +180,12 @@ test(
176
180
{ retry : 3 } ,
177
181
)
178
182
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
+ ( ) => {
184
186
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
+ )
201
191
}
0 commit comments