// Template for future sitespeed.io/Browsertime user journeys.
// Wire this into the runner only after validating the exact sitespeed.io script
// API version in the installed package.
module.exports=asyncfunctionbasicJourney(context,commands){awaitcommands.navigate('https://example.com/');awaitcommands.measure.start('example-page');awaitcommands.wait.byTime(1000);returncommands.measure.stop();};