diff --git a/src/technologies/g.json b/src/technologies/g.json index 5b2c6e3cf..9d5c23bb8 100644 --- a/src/technologies/g.json +++ b/src/technologies/g.json @@ -1705,7 +1705,7 @@ 63 ], "cpe": "cpe:2.3:a:google:cloud_platform:*:*:*:*:*:*:*:*", - "description": "IT WORKS", + "description": "Google Cloud is a suite of cloud computing services.", "icon": "Google Cloud.svg", "website": "https://cloud.google.com" }, diff --git a/tests/wpt.js b/tests/wpt.js index a5561ba23..162567b1a 100644 --- a/tests/wpt.js +++ b/tests/wpt.js @@ -6,7 +6,7 @@ const isDirectRun = require.main === module const wptServer = process.env.WPT_SERVER const wptApiKey = process.env.WPT_API_KEY -const PRnumber = parseInt(process.env.PR_NUMBER) +const prNumber = parseInt(process.env.PR_NUMBER) const wpt = new WebPageTest(wptServer, wptApiKey) /** @@ -17,10 +17,8 @@ const wpt = new WebPageTest(wptServer, wptApiKey) * @throws {Error} If the test run fails or the response status code is not 200. */ function runWPTTest(url) { - const options = { key: wptApiKey, wappalyzerPR: PRnumber } + const options = { key: wptApiKey, wappalyzerPR: prNumber } - console.log(`WPT test run for ${url} started`) - console.log('Options:', options) return new Promise((resolve, reject) => { wpt.runTestAndWait(url, options, (error, response) => { if (error || response.statusCode !== 200) { @@ -28,7 +26,6 @@ function runWPTTest(url) { console.error(error || response) reject(error || response) } else { - console.log(`WPT test run for ${url} completed`) const technologies = { detected: response.data.runs['1'].firstView.detected, detected_apps: response.data.runs['1'].firstView.detected_apps,