File tree 1 file changed +2
-5
lines changed
packages/slidev/node/commands
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ export interface ExportNotesOptions {
79
79
output ?: string
80
80
timeout ?: number
81
81
wait ?: number
82
- waitUntil ?: 'networkidle' | 'load' | 'domcontentloaded'
83
82
}
84
83
85
84
function createSlidevProgress ( indeterminate = false ) {
@@ -124,7 +123,6 @@ export async function exportNotes({
124
123
output = 'notes' ,
125
124
timeout = 30000 ,
126
125
wait = 0 ,
127
- waitUntil,
128
126
} : ExportNotesOptions ) : Promise < string > {
129
127
const { chromium } = await importPlaywright ( )
130
128
const browser = await chromium . launch ( )
@@ -138,9 +136,8 @@ export async function exportNotes({
138
136
if ( ! output . endsWith ( '.pdf' ) )
139
137
output = `${ output } .pdf`
140
138
141
- await page . goto ( `http://localhost:${ port } ${ base } presenter/print` , { waitUntil, timeout } )
142
- if ( waitUntil )
143
- await page . waitForLoadState ( waitUntil )
139
+ await page . goto ( `http://localhost:${ port } ${ base } presenter/print` , { waitUntil : 'networkidle' , timeout } )
140
+ await page . waitForLoadState ( 'networkidle' )
144
141
await page . emulateMedia ( { media : 'screen' } )
145
142
146
143
if ( wait )
You can’t perform that action at this time.
0 commit comments