UNPKG

browsertime

Version:

Get performance metrics from your web page using Browsertime.

10 lines (9 loc) 287 B
export function run(urlOrFunctions) { return async function (context, commands) { for (let urlOrFunction of urlOrFunctions) { await (typeof urlOrFunction === 'function' ? urlOrFunction(context, commands) : commands.measure.start(urlOrFunction)); } }; }