A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4 10 lines 334 B view raw
1import { type EvaluateFunction, launch } from "@astral/astral"; 2 3export async function testWeb<T>(evalFn: EvaluateFunction<T, []>): Promise<T> { 4 const url = "http://localhost:3000/testing/index.html"; 5 6 await using browser = await launch(); 7 await using page = await browser.newPage(url); 8 9 return await page.evaluate(evalFn); 10}