fune/testing/performance/perftest_pageload.js
Tarek Ziadé 2da872c93f Bug 1627623 - [mozperftest] Implement Andrew's tests r=acreskey
Implements https://github.com/acreskeyMoz/browsertime_on_android_scripts
changes to mach perftest and prototype

Differential Revision: https://phabricator.services.mozilla.com/D69801

--HG--
extra : moz-landing-system : lando
2020-04-14 07:46:51 +00:00

22 lines
527 B
JavaScript

async function setUp(context) {
context.log.info("setUp example!");
}
async function test(context, commands) {
let url = context.options.browsertime.url;
await commands.navigate("https://www.mozilla.org/en-US/");
await commands.wait.byTime(100);
await commands.navigate("about:blank");
await commands.wait.byTime(50);
return commands.measure.start(url);
}
async function tearDown(context) {
context.log.info("tearDown example!");
}
module.exports = { // eslint-disable-line
setUp,
tearDown,
test,
};