Skip to content

Commit bd90988

Browse files
authoredOct 12, 2024··
fix: export-notes command should wait until networkidle (#1898)
1 parent 3d1f722 commit bd90988

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed
 

‎packages/slidev/node/commands/export.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ export interface ExportNotesOptions {
7979
output?: string
8080
timeout?: number
8181
wait?: number
82-
waitUntil?: 'networkidle' | 'load' | 'domcontentloaded'
8382
}
8483

8584
function createSlidevProgress(indeterminate = false) {
@@ -124,7 +123,6 @@ export async function exportNotes({
124123
output = 'notes',
125124
timeout = 30000,
126125
wait = 0,
127-
waitUntil,
128126
}: ExportNotesOptions): Promise<string> {
129127
const { chromium } = await importPlaywright()
130128
const browser = await chromium.launch()
@@ -138,9 +136,8 @@ export async function exportNotes({
138136
if (!output.endsWith('.pdf'))
139137
output = `${output}.pdf`
140138

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')
144141
await page.emulateMedia({ media: 'screen' })
145142

146143
if (wait)

0 commit comments

Comments
 (0)