Remove unused function

This commit is contained in:
Daniel Imms
2021-04-06 06:28:49 -07:00
parent 934467d484
commit 5973e8f0dd
-7
View File
@@ -31,13 +31,6 @@ export async function pollFor<T>(page: playwright.Page, evalOrFn: string | (() =
}
}
function formatValue(value: any): string {
if (Array.isArray(value) || typeof value === 'object') {
return JSON.stringify(value);
}
return value + '';
}
export async function writeSync(page: playwright.Page, data: string): Promise<void> {
await page.evaluate(`
window.ready = false;