From e1156421a4ad643e60e89b2c5112353bc6024ac5 Mon Sep 17 00:00:00 2001 From: soulgalore Date: Tue, 8 Jan 2019 20:40:37 +0100 Subject: [PATCH] use latest bt --- package-lock.json | 6 +++--- package.json | 2 +- test/prepostscripts/multi.js | 8 +++----- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index ff16f7c56..cf413a839 100644 --- a/package-lock.json +++ b/package-lock.json @@ -678,9 +678,9 @@ "integrity": "sha1-81HTKWnTL6XXpVZxVCY9korjvR8=" }, "browsertime": { - "version": "4.0.0-alpha.13", - "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-4.0.0-alpha.13.tgz", - "integrity": "sha512-8yVZVUq8bkTYpc8/lL109acm8/v2YmNSLgngX17m+Gi5Bj6isF7XH3I+FBcgxfdb12yACYD7RQLYcLxJpZfXEA==", + "version": "4.0.0-alpha.14", + "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-4.0.0-alpha.14.tgz", + "integrity": "sha512-PqZPiTZw/PCH30vbNOpIxxR7TvZQvVuKnkY5SmezU6dEAUumdGruFJoNGqtj86PXcma9IhlzF2NukJUJu5hO0A==", "requires": { "@cypress/xvfb": "1.2.4", "@sitespeed.io/chromedriver": "2.44.1", diff --git a/package.json b/package.json index accd9eba9..12cecb0ae 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "main": "./lib/sitespeed.js", "dependencies": { "aws-sdk": "2.361.0", - "browsertime": "4.0.0-alpha.13", + "browsertime": "4.0.0-alpha.14", "cli-color": "1.4.0", "concurrent-queue": "7.0.2", "dayjs-ext": "2.2.0", diff --git a/test/prepostscripts/multi.js b/test/prepostscripts/multi.js index 6462184a4..a2a17c0bc 100644 --- a/test/prepostscripts/multi.js +++ b/test/prepostscripts/multi.js @@ -1,7 +1,5 @@ module.exports = async function(context, commands) { - await commands.measure.startAndNavigate('https://www.sitespeed.io'); - await commands.measure.startAndNavigate('https://www.sitespeed.io/examples/'); - return commands.measure.startAndNavigate( - 'https://www.sitespeed.io/documentation/' - ); + await commands.measure.start('https://www.sitespeed.io'); + await commands.measure.start('https://www.sitespeed.io/examples/'); + return commands.measure.start('https://www.sitespeed.io/documentation/'); };